:root {
  --bg: #080807;
  --panel: #111109;
  --panel-2: #0d0d0a;
  --text: #f5f0e8;
  --muted: #aaa394;
  --soft: #c0bab0;
  --gold: #c9a84c;
  --gold-2: #f2d27b;
  --line: rgba(201, 168, 76, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.16));
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease, transform 0.4s ease;
  will-change: transform;
}

.site-header.is-hidden { transform: translateY(-100%); }

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(8, 8, 7, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
}

.brand strong { color: var(--text); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold-2); }

.outline-button {
  justify-self: end;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 0.72rem 1.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.outline-button:hover { background: var(--gold); color: #100d04; }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px; height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  background: rgba(8, 8, 7, 0.62);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: var(--gold-2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(8, 8, 7, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu a::after { content: "›"; color: var(--gold-2); font-size: 1.2rem; }

.mobile-menu a:last-child {
  margin-top: 8px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 70px;
}

.hero-media, .hero-overlay { position: absolute; inset: 0; }

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1741408236622-cc964a1ae355?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.45), rgba(8, 8, 7, 0.9)),
    radial-gradient(circle at 52% 56%, rgba(201, 168, 76, 0.18), transparent 34%),
    linear-gradient(135deg, #080807 0%, rgba(17, 16, 8, 0.75) 55%, #0a0a00 100%);
}

.hero-content { position: relative; z-index: 1; width: min(100%, 1040px); text-align: center; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Noto Serif", Georgia, serif; font-weight: 400; letter-spacing: 0; }

h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: clamp(1.6rem, 3vw, 3.8rem);
  line-height: 1.35;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 2px;
  color: var(--soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 0;
  padding: 0.92rem 1.45rem;
  color: #100d04;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 168, 76, 0.22); }

.text-link { color: var(--gold-2); font-size: 0.86rem; font-weight: 700; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 54px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats div { min-width: 0; }
.hero-stats dt { color: var(--gold-2); font-family: "Noto Serif", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.section { padding: clamp(72px, 9vw, 116px) 24px; background: var(--panel-2); }
.section-dark { background: #0a0a08; }
.section-page { padding-top: clamp(150px, 18vh, 220px); }

.section-heading { width: min(100%, 720px); margin: 0 auto 48px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; font-size: clamp(2.3rem, 5vw, 4.25rem); line-height: 1.04; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-weight: 300; }

.service-grid, .case-grid, .testimonial-grid, .contact-layout { width: min(100%, 1120px); margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(201, 168, 76, 0.18); }

.feature-card {
  min-height: 260px;
  padding: 32px;
  background: var(--panel-2);
  border-right: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: background 0.2s ease;
}

.feature-card:hover { background: var(--panel); }

.feature-card .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--gold-2);
  border: 1px solid var(--line);
  font-size: 1.2rem;
}

.feature-card h3, .case-card h3, .contact-info h3 { color: var(--text); font-family: "Noto Serif", Georgia, serif; font-weight: 500; }
.feature-card h3 { font-size: 1.26rem; }
.feature-card p, .case-card blockquote, .testimonial p, .faq-list p, .contact-info, .form-note { color: var(--muted); font-weight: 300; }

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

.case-card, .testimonial, .contact-form, .contact-info {
  background: linear-gradient(145deg, #12120c, #090908);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: var(--shadow);
}

.case-card { display: flex; min-height: 410px; flex-direction: column; gap: 24px; padding: 28px; }
.case-top { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.case-top h3 { margin-bottom: 4px; }

.case-top span {
  flex-shrink: 0;
  padding: 5px 9px;
  color: var(--gold-2);
  background: rgba(201, 168, 76, 0.12);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stars { margin: 0; color: var(--gold-2); font-size: 0.78rem; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row p { margin: 0; color: var(--muted); font-size: 0.72rem; line-height: 1.25; text-align: center; }
.metric-row strong { display: block; color: var(--gold-2); font-family: "Noto Serif", Georgia, serif; font-size: clamp(1.42rem, 2vw, 1.9rem); font-weight: 500; }

blockquote { margin: auto 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-style: italic; }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial { padding: 28px; border-left: 3px solid var(--gold); }
.testimonial p { min-height: 82px; font-style: italic; }
.testimonial strong, .testimonial span { display: block; }
.testimonial strong { margin-top: 18px; }
.testimonial span { color: var(--muted); font-size: 0.82rem; }

.faq-section { background: var(--panel-2); }
.faq-list { width: min(100%, 760px); margin: 0 auto; }

details { border: 1px solid rgba(201, 168, 76, 0.22); margin-bottom: 10px; background: rgba(255, 255, 255, 0.02); }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  list-style: none;
}

summary::after { content: "+"; color: var(--gold-2); font-size: 1.3rem; }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 22px 20px; }

.contact-section { background: #080807; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 28px; align-items: stretch; }
.contact-info, .contact-form { padding: 30px; }
.contact-info ul { padding: 0; margin: 0 0 28px; list-style: none; }
.contact-info li { margin-bottom: 12px; }
.contact-info li::before { content: "✓"; color: var(--gold-2); margin-right: 10px; }

.contact-lines { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-lines a:hover { color: var(--gold-2); }

.contact-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

label { display: grid; gap: 8px; color: var(--gold-2); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.065); }
textarea { resize: vertical; }

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23c9a84c' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

select option { background: #181818; color: #f0ece4; }

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.04);
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.checkbox-line input { width: 18px; height: 18px; accent-color: var(--gold); }
.checkbox-line small { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 300; }

.form-note { margin: 0; text-align: center; font-size: 0.8rem; }
.form-note.success { color: #96d49f; }
.form-note.error { color: #e0a09a; }

.site-footer { padding: 42px 24px; border-top: 1px solid var(--line); background: #060605; text-align: center; }
.site-footer .brand { justify-self: center; display: inline-block; }
.site-footer p { margin: 10px 0 0; color: var(--muted); font-size: 0.82rem; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Directional reveals (used by the GSAP path, with an IntersectionObserver fallback) */
.reveal-left,
.reveal-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* When GSAP drives the animation it sets inline styles every frame —
   drop the CSS transitions so the two engines don't fight each other. */
.anim-on .reveal,
.anim-on .reveal-left,
.anim-on .reveal-right { transition: none; }
.anim-on .primary-button { will-change: transform; }
.anim-on .hero-media { will-change: transform; }

/* ===== CTA band (home) ===== */
.cta-band { width: min(100%, 1120px); margin: 0 auto; text-align: center; border: 1px solid var(--line); background: linear-gradient(145deg, #161409, #0c0c08); padding: clamp(40px, 6vw, 72px) 24px; box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-weight: 300; max-width: 620px; margin: 0 auto 28px; }

/* ===== Section CTA link row ===== */
.section-cta { width: min(100%, 1120px); margin: 40px auto 0; text-align: center; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open { background: rgba(8, 8, 7, 0.98); border-bottom: 1px solid rgba(201, 168, 76, 0.22); }
  .site-header.menu-open .mobile-menu { display: block; }
  .site-header > .outline-button { display: none; }
  .service-grid, .case-grid, .testimonial-grid, .contact-layout { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .case-card { min-height: auto; }
}

@media (max-width: 620px) {
  .site-header { padding: 16px; }
  .outline-button { display: none; }
  .hero { min-height: 94svh; padding-inline: 18px; }
  h1 { font-size: clamp(1.6rem, 3vw, 3.8rem); }
  .hero-actions, .hero-actions a, .primary-button { width: 100%; }
  .hero-stats, .metric-row, .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .section { padding-inline: 18px; }
  .feature-card, .case-card, .testimonial, .contact-info, .contact-form { padding: 22px; }
}

/* ===== PRICING SECTION ===== */
.pricing-grid { width: min(100%, 1120px); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.pricing-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #12120c, #090908);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: var(--shadow);
  padding: 36px 30px 30px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover { border-color: rgba(201, 168, 76, 0.5); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(145deg, #161409, #0e0e07); }

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #100d04;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}

.pricing-top { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pricing-top .eyebrow { margin-bottom: 8px; font-size: 0.7rem; }
.pricing-top h3 { font-family: "Noto Serif", Georgia, serif; font-size: 1.42rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.pricing-top p { color: var(--muted); font-size: 0.88rem; font-weight: 300; margin: 0; line-height: 1.55; }

.pricing-price { margin: 16px 0 0; display: flex; align-items: baseline; gap: 6px; }
.pricing-price .amount { font-family: "Noto Serif", Georgia, serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--gold-2); }
.pricing-price .per { color: var(--muted); font-size: 0.8rem; font-weight: 300; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 auto; display: grid; gap: 11px; padding-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--soft); font-size: 0.9rem; font-weight: 300; line-height: 1.4; }
.pricing-features li::before { content: "✓"; color: var(--gold-2); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.pricing-features li.disabled { color: var(--muted); opacity: 0.45; }
.pricing-features li.disabled::before { content: "✕"; color: var(--muted); font-weight: 400; }

.pricing-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 0.92rem 1.2rem; margin-top: 24px; font-size: 0.78rem; }
.pricing-btn svg { flex-shrink: 0; }
.pricing-card:not(.featured) .pricing-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold-2); }
.pricing-card:not(.featured) .pricing-btn:hover { background: var(--gold); color: #100d04; }

.pricing-note { width: min(100%, 1120px); margin: 24px auto 0; text-align: center; color: var(--muted); font-size: 0.8rem; font-weight: 300; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ===== Floating Contact Buttons ===== */
.float-btns { position: fixed; bottom: 28px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

.float-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px 0 14px;
  height: 50px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 50px;
}

.float-btn span { opacity: 0; max-width: 0; transition: opacity 0.25s ease, max-width 0.3s ease; pointer-events: none; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.55); max-width: 200px; padding: 0 20px 0 16px; }
.float-btn:hover span { opacity: 1; max-width: 120px; }

.float-btn--phone { background: linear-gradient(135deg, #1a2e4a, #2a4a6e); border: 1px solid rgba(100, 160, 220, 0.35); color: #d0e8ff; }
.float-btn--phone:hover { background: linear-gradient(135deg, #1e3557, #2f5480); border-color: rgba(100, 160, 220, 0.6); }
.float-btn--wa { background: linear-gradient(135deg, #1a3d28, #25a244); border: 1px solid rgba(50, 200, 100, 0.35); color: #c8ffd4; }
.float-btn--wa:hover { background: linear-gradient(135deg, #1e4a2e, #28b84c); border-color: rgba(50, 200, 100, 0.6); }
.float-btn--pay { background: linear-gradient(135deg, #2a1f0a, #c9a84c); border: 1px solid rgba(201, 168, 76, 0.5); color: #100d04; font-weight: 800; }
.float-btn--pay:hover { background: linear-gradient(135deg, #c9a84c, #f2d27b); border-color: rgba(242, 210, 123, 0.8); box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35); }

@media (max-width: 600px) {
  .float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { height: 46px; padding: 0 14px 0 12px; }
  .float-btn:hover { padding: 0 16px 0 12px; }
}

/* ===== Floating 3D hero cards ===== */
.floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1200px;
  will-change: transform;
}

.floater {
  position: absolute;
  will-change: transform;
  animation: floatY 6s ease-in-out infinite;
}

.floater-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  background: linear-gradient(150deg, rgba(34, 31, 18, 0.82), rgba(12, 12, 10, 0.55));
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), 0 0 26px rgba(201, 168, 76, 0.14), inset 0 1px 0 rgba(242, 210, 123, 0.18);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.floater-inner .fi-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 9px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-2);
  font-size: 1rem;
}

/* corner positions — the 3D tilt lives on the inner element so the float
   keyframe (which animates translateY on .floater) doesn't clobber it */
.floater--tl { top: 19%; left: 3%; animation-duration: 6s; }
.floater--bl { bottom: 20%; left: 6%; animation-duration: 7.5s; animation-delay: 0.6s; }
.floater--tr { top: 21%; right: 3%; animation-duration: 6.8s; animation-delay: 0.3s; }
.floater--br { bottom: 17%; right: 6%; animation-duration: 8s; animation-delay: 1s; }
.floater--tl .floater-inner { transform: rotateY(24deg) rotateX(7deg); }
.floater--bl .floater-inner { transform: rotateY(18deg) rotateX(-7deg); }
.floater--tr .floater-inner { transform: rotateY(-24deg) rotateX(7deg); }
.floater--br .floater-inner { transform: rotateY(-18deg) rotateX(-7deg); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* keep hero text above the floaters */
.hero-content { z-index: 2; }

/* section-page header variant (hizmetler / paketler) */
.section-page { position: relative; overflow: hidden; }
.section-page > .section-heading,
.section-page > .service-grid,
.section-page > .pricing-grid,
.section-page > .section-cta,
.section-page > .pricing-note { position: relative; z-index: 2; }
.section-page .floater--tl { top: clamp(120px, 16vh, 200px); left: 2%; }
.section-page .floater--tr { top: clamp(132px, 17vh, 215px); right: 2%; }

@media (max-width: 1100px) { .floaters { display: none; } }
@media (prefers-reduced-motion: reduce) { .floater { animation: none; } }

/* ===== Breadcrumb ===== */
.breadcrumb { width: min(100%, 1120px); margin: 0 auto 26px; font-size: 0.74rem; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--gold-2); }
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* ===== Long-form prose / SEO content ===== */
.prose { width: min(100%, 820px); margin: 0 auto; color: var(--soft); font-weight: 300; }
.prose.wide { width: min(100%, 1000px); }
.prose h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin: 48px 0 16px; line-height: 1.12; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: "Noto Serif", Georgia, serif; font-weight: 500; color: var(--text); font-size: 1.28rem; margin: 32px 0 12px; }
.prose p { margin: 0 0 18px; font-size: 1.02rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 0; list-style: none; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 28px; line-height: 1.6; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-2); font-weight: 700; }
.prose ol { counter-reset: pr; }
.prose ol li { position: relative; padding-left: 38px; line-height: 1.6; counter-increment: pr; }
.prose ol li::before { content: counter(pr); position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--gold-2); font-size: 0.8rem; font-weight: 700; }
.prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.prose a:hover { text-decoration-color: var(--gold-2); }
.prose strong { color: var(--text); font-weight: 600; }
.prose .lead { font-size: 1.15rem; line-height: 1.7; color: var(--text); font-weight: 400; }

/* ===== Two-column feature rows ===== */
.split { width: min(100%, 1120px); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.split-card { padding: 30px; background: var(--panel-2); border: 1px solid rgba(201, 168, 76, 0.18); }
.split-card h3 { font-family: "Noto Serif", Georgia, serif; font-weight: 500; color: var(--text); font-size: 1.2rem; margin-bottom: 10px; }
.split-card p { color: var(--muted); font-weight: 300; margin: 0; line-height: 1.6; }

/* ===== Blog grid / post cards ===== */
.blog-grid { width: min(100%, 1120px); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.post-card { display: flex; flex-direction: column; gap: 14px; padding: 30px; background: linear-gradient(145deg, #12120c, #090908); border: 1px solid rgba(201, 168, 76, 0.22); box-shadow: var(--shadow); transition: border-color 0.2s ease, transform 0.2s ease; }
.post-card:hover { border-color: rgba(201, 168, 76, 0.5); transform: translateY(-4px); }
.post-card .post-tag { color: var(--gold-2); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.post-card h3 { font-family: "Noto Serif", Georgia, serif; font-weight: 500; color: var(--text); font-size: 1.3rem; line-height: 1.3; margin: 0; }
.post-card p { color: var(--muted); font-weight: 300; margin: 0; line-height: 1.6; flex: 1; }
.post-card .post-more { color: var(--gold-2); font-size: 0.82rem; font-weight: 700; }
.article-meta { width: min(100%, 820px); margin: 0 auto 28px; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.04em; }
.article-meta span + span::before { content: "·"; margin: 0 10px; color: var(--gold-2); }

/* ===== Rich footer ===== */
.site-footer.footer-rich { padding: 0; text-align: left; }
.footer-main { width: min(100%, 1120px); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding: 56px 24px 40px; }
.footer-col h4 { color: var(--gold-2); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.9rem; font-weight: 300; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-2); }
.footer-about p { color: var(--muted); font-size: 0.88rem; font-weight: 300; line-height: 1.6; margin: 0 0 16px; max-width: 320px; }
.footer-about .brand { justify-self: start; margin-bottom: 14px; font-family: "Noto Serif", Georgia, serif; font-size: 1.4rem; letter-spacing: 0.12em; color: var(--gold); }
.footer-about .brand strong { color: var(--text); }
.footer-contact { display: grid; gap: 6px; margin-top: 4px; }
.footer-contact a, .footer-contact span { color: var(--muted); font-size: 0.86rem; font-weight: 300; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; text-align: center; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.8rem; }
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
