/*
Theme Name: XeberlerAZ Official
Theme URI: https://xeberleraz.com/
Author: XeberlerAZ Digital
Author URI: https://xeberleraz.com/
Description: A professional, minimal homepage theme for xeberleraz.com with a clear hosting and theme cost presentation.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xeberleraz
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

:root {
  --xz-bg: #f4f7fb;
  --xz-surface: #ffffff;
  --xz-surface-2: #eef3f9;
  --xz-ink: #0c1728;
  --xz-muted: #64748b;
  --xz-line: rgba(15, 23, 42, .10);
  --xz-blue: #0a4ea3;
  --xz-blue-2: #0f6bdc;
  --xz-navy: #071a35;
  --xz-gold: #c89b3c;
  --xz-shadow: 0 24px 70px rgba(7, 26, 53, .14);
  --xz-radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--xz-ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(15, 107, 220, .14), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(200, 155, 60, .16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--xz-bg) 100%);
}
a { color: inherit; text-decoration: none; }

.xz-page {
  min-height: 100vh;
  overflow: hidden;
}

.xz-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.xz-header {
  padding: 24px 0 12px;
}

.xz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(7, 26, 53, .07);
}

.xz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.xz-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.08em;
  background: linear-gradient(135deg, var(--xz-navy), var(--xz-blue-2));
  box-shadow: 0 14px 26px rgba(10, 78, 163, .25);
  position: relative;
}
.xz-logo-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: var(--xz-gold);
}

.xz-brand-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
}
.xz-brand-title span { color: var(--xz-blue); }
.xz-brand-subtitle {
  margin-top: 5px;
  color: var(--xz-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.xz-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--xz-navy);
  background: linear-gradient(180deg, #fff, #f4f7fb);
  border: 1px solid var(--xz-line);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.xz-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.xz-hero {
  padding: 64px 0 76px;
}
.xz-hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 34px;
  align-items: stretch;
}

.xz-hero-copy {
  padding: 48px;
  border-radius: var(--xz-radius);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--xz-shadow);
  position: relative;
  overflow: hidden;
}
.xz-hero-copy::before {
  content: "";
  position: absolute;
  inset: -120px -140px auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15,107,220,.16), transparent 64%);
}

.xz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 78, 163, .08);
  color: var(--xz-blue);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.xz-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--xz-gold);
}

.xz-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.065em;
  color: var(--xz-navy);
}
.xz-title span {
  color: var(--xz-blue);
}

.xz-lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: var(--xz-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
}

.xz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.xz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.xz-btn:hover { transform: translateY(-2px); }
.xz-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--xz-blue), var(--xz-blue-2));
  box-shadow: 0 18px 36px rgba(10, 78, 163, .28);
}
.xz-btn-ghost {
  color: var(--xz-navy);
  background: #fff;
  border: 1px solid var(--xz-line);
}

.xz-panel {
  border-radius: var(--xz-radius);
  background: linear-gradient(180deg, var(--xz-navy), #092449 62%, #071427);
  box-shadow: var(--xz-shadow);
  color: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.xz-panel::before {
  content: "";
  position: absolute;
  inset: -90px -110px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200,155,60,.34), transparent 65%);
  z-index: -1;
}
.xz-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -130px -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15,107,220,.34), transparent 66%);
  z-index: -1;
}

.xz-cost-card {
  padding: 34px;
}
.xz-cost-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.xz-cost-label {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.xz-cost-title {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.xz-badge {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.xz-cost-list {
  display: grid;
  gap: 14px;
}
.xz-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}
.xz-cost-name {
  display: grid;
  gap: 5px;
}
.xz-cost-name strong {
  font-size: 16px;
  letter-spacing: -.01em;
}
.xz-cost-name span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.4;
}
.xz-price {
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
  color: #fff;
  white-space: nowrap;
}
.xz-price small {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.xz-total {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(200,155,60,.94), rgba(242,203,108,.92));
  color: #1b1305;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 44px rgba(200,155,60,.22);
}
.xz-total span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .76;
}
.xz-total strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}
.xz-total-price {
  font-size: 38px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.xz-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.65;
}

.xz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.xz-feature {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 38px rgba(7,26,53,.06);
}
.xz-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--xz-navy), var(--xz-blue));
  font-weight: 900;
  margin-bottom: 14px;
}
.xz-feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -.03em;
}
.xz-feature p {
  margin: 0;
  color: var(--xz-muted);
  line-height: 1.65;
  font-size: 14px;
}

.xz-footer {
  padding: 0 0 36px;
  color: var(--xz-muted);
  font-size: 13px;
}
.xz-footer-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--xz-line);
}

@media (max-width: 920px) {
  .xz-hero { padding-top: 34px; }
  .xz-hero-grid { grid-template-columns: 1fr; }
  .xz-hero-copy { padding: 34px; }
  .xz-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .xz-container { width: min(100% - 24px, 1180px); }
  .xz-nav { align-items: flex-start; }
  .xz-status { display: none; }
  .xz-hero-copy, .xz-cost-card { padding: 24px; }
  .xz-cost-row, .xz-total { align-items: flex-start; flex-direction: column; }
  .xz-title { font-size: 42px; }
  .xz-actions { display: grid; }
  .xz-btn { width: 100%; }
  .xz-footer-line { flex-direction: column; }
}
