/* ===========================
   NONAGON THEME — main.css
   =========================== */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --text: #f5f1ea;
  --text-muted: #8a857d;
  --accent: #c9a55c;
  --accent-bright: #e0bc6e;
  --line: rgba(245, 241, 234, 0.08);
  --line-strong: rgba(245, 241, 234, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.lead { color: var(--text-muted); font-size: 17px; max-width: 640px; }
.lead-centered { color: var(--text-muted); font-size: 17px; max-width: 640px; margin: 0 auto; text-align: center; }

/* === NAV === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex;
  align-items: center;
}
.logo span { color: var(--accent); }

/* Custom logo (image uploaded via Customizer) */
.logo .custom-logo-link {
  display: block;
  line-height: 0;
}
.logo .custom-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 240px;
  display: block;
}
@media (max-width: 900px) {
  .logo .custom-logo {
    height: 36px !important;
    max-width: 180px;
  }
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
  font-size: 14px; letter-spacing: 0.05em;
}
.nav-links a { color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--text); }
.nav-cta {
  padding: 12px 24px; border: 1px solid var(--accent); color: var(--accent);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* === HERO === */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-tag {
  display: inline-block; padding: 8px 16px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  backdrop-filter: blur(10px); background: rgba(10,10,10,0.4);
}
.hero-tag::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  margin-right: 10px; vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(48px, 7vw, 96px); max-width: 900px; margin-bottom: 32px; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.hero-sub { font-size: 18px; max-width: 540px; color: var(--text-muted); margin-bottom: 48px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; background: var(--accent); color: var(--bg);
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; transition: all 0.3s;
}
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-secondary {
  padding: 18px 36px; border: 1px solid var(--line-strong); color: var(--text);
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--text); background: rgba(245,241,234,0.05); }
.button-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* === STATS === */
.stats-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
}
.stat { background: var(--bg-soft); padding: 60px 24px; text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 64px; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 12px;
}
.stat-label { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* === SECTIONS === */
section:not(.hero):not(.stats-section) { padding: 140px 0; }
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.section-eyebrow.centered::before { display: none; }
.section-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 32px; max-width: 800px; }
.section-title em { font-style: italic; color: var(--accent); }

/* === OFFER === */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.offer-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.offer-image:hover img { transform: scale(1.05); }
.offer-badge {
  position: absolute; top: 24px; left: 24px;
  padding: 10px 18px; background: var(--accent); color: var(--bg);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
}

/* PRICE BLOCK in offer */
.offer-price {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
}
.offer-price-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.offer-price-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.offer-price-value span {
  font-size: 0.4em;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 8px;
  text-transform: uppercase;
}
.offer-price-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.offer-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 32px 0; padding: 32px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.offer-meta-item .label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.offer-meta-item .value { font-family: 'Fraunces', serif; font-size: 22px; color: var(--text); }

/* === TECH === */
.tech { background: var(--bg-soft); }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 80px; }
.tech-card {
  background: var(--bg-card); padding: 48px 36px;
  border: 1px solid var(--line); transition: all 0.4s;
  position: relative; overflow: hidden;
}
.tech-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tech-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; color: var(--accent);
  font-family: 'Fraunces', serif; font-size: 22px;
}
.tech-card h3 { font-size: 26px; margin-bottom: 16px; }
.tech-card p { color: var(--text-muted); font-size: 15px; }
.tech-cta { margin-top: 60px; text-align: center; }

/* === CUSTOMIZATION SECTION === */
.customization { background: var(--bg); }
.customization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.customization-text p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.customization-highlights {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.customization-highlight {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.customization-highlight-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.customization-highlight strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 6px;
}
.customization-highlight p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* === PROCESS === */
.process-list { margin-top: 80px; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 48px; padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: center; transition: padding 0.4s;
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item:hover { padding-left: 24px; }
.process-num { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 300; color: var(--accent); }
.process-content h3 { font-size: 28px; margin-bottom: 8px; }
.process-content p { color: var(--text-muted); max-width: 600px; }
.process-arrow { color: var(--text-muted); font-size: 24px; transition: transform 0.3s, color 0.3s; }
.process-item:hover .process-arrow { transform: translateX(8px); color: var(--accent); }

/* === INVESTMENTS === */
.investments { background: var(--bg-soft); }
.investments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}
.investment-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: all 0.4s;
  overflow: hidden;
}
.investment-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.investment-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.investment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.investment-card:hover .investment-image img { transform: scale(1.05); }
.investment-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.investment-badge.active {
  background: var(--accent);
  color: var(--bg);
}
.investment-badge.sold {
  background: rgba(10,10,10,0.7);
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
}
.investment-info {
  padding: 32px 28px;
}
.investment-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.investment-meta span:not(:first-child)::before {
  content: '·';
  color: var(--text-muted);
  margin-right: 16px;
}
.investment-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.investment-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.investment-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-muted);
}
.investment-stats strong {
  color: var(--accent);
  font-weight: 500;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-soft); padding: 120px 0 !important;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,165,92,0.08) 0%, transparent 60%);
}
.cta-banner-content { position: relative; }
.cta-banner h2 { font-size: clamp(40px, 6vw, 80px); max-width: 900px; margin: 0 auto 32px; }
.cta-banner h2 em { font-style: italic; color: var(--accent); }
.cta-banner p { color: var(--text-muted); font-size: 18px; max-width: 540px; margin: 0 auto 48px; }

/* === PARTNERS === */
.partners {
  background: var(--bg-soft); padding: 80px 0 !important;
  border-top: 1px solid var(--line);
}
.partners-label { text-align: center; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px; }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 80px; flex-wrap: wrap; }
.partners-grid img { height: 40px; width: auto; opacity: 0.5; filter: grayscale(1) brightness(1.5); transition: opacity 0.3s; }
.partners-grid img:hover { opacity: 1; }

/* === TECHNOLOGY PAGE === */
.tech-hero {
  padding: 200px 0 100px !important;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.tech-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; position: relative; }
.tech-eyebrow { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.tech-eyebrow.centered { text-align: center; display: block; }
.tech-hero h1 { font-size: clamp(48px, 7vw, 88px); margin-bottom: 0; }
.tech-hero h1 em { font-style: italic; color: var(--accent); }
.tech-hero-text p { color: var(--text-muted); font-size: 17px; margin-bottom: 16px; }

.savings { text-align: center; border-bottom: 1px solid var(--line); }
.savings-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 300; line-height: 1;
  color: var(--accent); margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.savings-num sup { font-size: 0.4em; color: var(--text); vertical-align: super; }
.savings p { font-size: 22px; max-width: 640px; margin: 0 auto; color: var(--text); }
.savings p span { color: var(--text-muted); font-size: 16px; display: block; margin-top: 12px; }

.pillars { background: var(--bg-soft); }
.pillars-header { max-width: 720px; margin-bottom: 80px; }
.pillars-header h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 24px; }
.pillars-header h2 em { font-style: italic; color: var(--accent); }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--bg-soft); padding: 64px 48px; transition: background 0.3s; }
.pillar:hover { background: var(--bg-card); }
.pillar-num { font-family: 'Fraunces', serif; font-size: 14px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 32px; }
.pillar h3 { font-size: 32px; margin-bottom: 20px; }
.pillar p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.pillar-spec { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.pillar-spec-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.pillar-spec-value { font-family: 'Fraunces', serif; font-size: 22px; color: var(--accent); }

/* === OPTIONS SECTION === */
.options-section { background: var(--bg); }
.options-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.options-header h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; }
.options-header h2 em { font-style: italic; color: var(--accent); }

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.option-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: all 0.3s;
}
.option-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.option-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.option-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.option-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 500;
}

/* === COMPARISON === */
.comparison-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.comparison-header h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.comparison-header h2 em { font-style: italic; color: var(--accent); }
.comparison-header p { color: var(--text-muted); }

.compare-table { border: 1px solid var(--line); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: none; }
.compare-row.header { background: var(--bg-soft); }
.compare-cell { padding: 24px 32px; border-right: 1px solid var(--line); display: flex; align-items: center; }
.compare-cell:last-child { border-right: none; }
.compare-cell.label { color: var(--text); font-weight: 400; }
.compare-cell.title { font-family: 'Fraunces', serif; font-size: 18px; letter-spacing: 0.05em; }
.compare-cell.title.them { color: var(--text-muted); }
.compare-cell.title.us { color: var(--accent); }
.compare-cell.value { color: var(--text-muted); font-size: 15px; }
.compare-cell.value.us { color: var(--text); font-weight: 400; }

.cta { text-align: center; background: var(--bg); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(201,165,92,0.06) 0%, transparent 60%); }
.cta-content { position: relative; }
.cta h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta h2 em { font-style: italic; color: var(--accent); }
.cta p { color: var(--text-muted); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* === FAQ PAGE === */
.page-header.faq-page-header {
  padding: 200px 0 100px !important;
  text-align: center; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.page-eyebrow { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.page-header h1 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 24px; }
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header p { color: var(--text-muted); font-size: 18px; max-width: 640px; margin: 0 auto; }

.faq-section { padding: 120px 0 !important; }
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 80px; }
.faq-sidebar { position: sticky; top: 120px; align-self: start; }
.faq-sidebar-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.faq-categories { list-style: none; }
.faq-categories li {
  padding: 16px 0; border-top: 1px solid var(--line);
  font-size: 14px; letter-spacing: 0.05em; color: var(--text-muted);
  cursor: pointer; transition: color 0.3s;
}
.faq-categories li:last-child { border-bottom: 1px solid var(--line); }
.faq-categories li:hover { color: var(--text); }
.faq-categories li.active { color: var(--accent); }
.faq-categories li.active::before { content: '— '; color: var(--accent); }
.faq-group { margin-bottom: 80px; }
.faq-group-title { font-size: 32px; margin-bottom: 32px; color: var(--text); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question { padding: 28px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 32px; transition: padding 0.3s; }
.faq-item:hover .faq-question { padding-left: 16px; }
.faq-question-text { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; color: var(--text); }
.faq-toggle { width: 32px; height: 32px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; color: var(--accent); }
.faq-item.open .faq-toggle { background: var(--accent); color: var(--bg); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }
.faq-item.open .faq-answer { max-height: 800px; padding-bottom: 28px; }
.faq-answer p { color: var(--text-muted); font-size: 16px; line-height: 1.8; max-width: 760px; }

.cta-bottom { background: var(--bg-soft); padding: 100px 0 !important; text-align: center; border-top: 1px solid var(--line); }
.cta-bottom h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; }
.cta-bottom h2 em { font-style: italic; color: var(--accent); }
.cta-bottom p { color: var(--text-muted); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* === GENERIC PAGE === */
.page-header-section { padding: 200px 0 80px; border-bottom: 1px solid var(--line); }
.page-header-section h1 { font-size: clamp(40px, 6vw, 72px); }
.page-body { padding: 80px 0 140px; max-width: 800px; margin: 0 auto; }
.page-body p { color: var(--text); font-size: 17px; margin-bottom: 24px; }

/* === CONTACT PAGE === */
.contact-page-header {
  padding: 200px 0 80px !important;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.contact-hero {
  padding: 80px 0 !important;
  background: var(--bg);
}
.contact-hero-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  border: 1px solid var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 165, 92, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.contact-hero-eyebrow {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.contact-hero-name {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 16px;
}
.contact-hero-role {
  position: relative;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
.contact-hero-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  text-align: left;
  transition: all 0.3s;
  color: var(--text);
}
.contact-action-card:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-2px);
}
.contact-action-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-action-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-action-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--text);
}
.contact-hero-note {
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
  max-width: 540px;
  margin: 0 auto;
}

.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 100px;
}
.contact-detail-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
}
.contact-detail-value a:hover { color: var(--accent); }

.contact-form-wrapper {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px 40px;
}

/* Jetpack Form styling for dark theme */
.contact-form-wrapper .wp-block-jetpack-contact-form,
.contact-form-wrapper form { color: var(--text); }

.contact-form-wrapper label,
.contact-form-wrapper .grunion-field-label {
  color: var(--text-muted) !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  display: block !important;
}
.contact-form-wrapper label .required,
.contact-form-wrapper label span {
  color: var(--accent) !important;
  font-size: 10px !important;
  margin-left: 4px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  width: 100% !important;
  background: var(--bg) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  padding: 14px 16px !important;
  margin-bottom: 20px !important;
  border-radius: 0 !important;
  transition: border-color 0.3s !important;
  box-shadow: none !important;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
}
.contact-form-wrapper textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

.contact-form-wrapper button[type="submit"],
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper .wp-block-jetpack-button button {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border: none !important;
  padding: 18px 36px !important;
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  border-radius: 0 !important;
  width: auto !important;
}
.contact-form-wrapper button[type="submit"]:hover,
.contact-form-wrapper input[type="submit"]:hover {
  background: var(--accent-bright) !important;
}

/* Phone field PL prefix */
.contact-form-wrapper .wp-block-jetpack-field-telephone select,
.contact-form-wrapper .grunion-tel-prefix {
  background: var(--bg) !important;
  color: var(--text) !important;
  border: 1px solid var(--line-strong) !important;
}

/* Checkbox / consent */
.contact-form-wrapper input[type="checkbox"] {
  accent-color: var(--accent);
  margin-right: 8px;
}
.contact-form-wrapper .wp-block-jetpack-field-consent {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* COMPANY DATA SECTION */
.company-data {
  background: var(--bg-soft);
  padding: 100px 0 !important;
}
.company-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.company-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px 32px;
  transition: border-color 0.3s;
}
.company-card:hover {
  border-color: var(--line-strong);
}
.company-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.company-card-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}
.company-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.company-card-details p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}
.company-card-details strong {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 8px;
}
.company-card-details a {
  color: var(--text);
  transition: color 0.3s;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.company-card-details a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* RODO NOTICE */
.rodo-notice {
  padding: 60px 0 !important;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.rodo-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  align-items: start;
}
.rodo-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  font-style: normal;
}
.rodo-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.rodo-card strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* === FOOTER === */
.site-footer {
  background: #050505; padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-company-data {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  line-height: 1.7 !important;
  margin-top: 16px !important;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; font-family: 'Inter', sans-serif; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { color: var(--text); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: var(--text-muted); margin: 16px 0; max-width: 320px; font-size: 14px; }
.footer-bottom { padding-top: 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--text-muted); font-size: 13px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-grid { grid-template-columns: 1fr; }
  .customization-grid { grid-template-columns: 1fr; gap: 40px; }
  .investments-grid { grid-template-columns: 1fr; gap: 32px; }
  .options-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-item { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-arrow { display: none; }
  .partners-grid { gap: 32px; }
  section:not(.hero):not(.stats-section) { padding: 80px 0 !important; }
  .container { padding: 0 20px; }
  .tech-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .compare-cell { padding: 16px 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .offer-meta { grid-template-columns: 1fr; gap: 20px; padding: 24px 0; }
  .offer-price-value { font-size: 32px; }

  /* Contact page responsive */
  .contact-hero-card { padding: 40px 24px; }
  .contact-hero-actions { grid-template-columns: 1fr; }
  .contact-action-card { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .company-data-grid { grid-template-columns: 1fr; gap: 16px; }
  .rodo-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .contact-form-wrapper { padding: 32px 24px; }
}

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag, .hero h1, .hero-sub, .hero-actions {
  animation: fadeUp 1s ease forwards; opacity: 0;
}
.hero h1 { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.45s; }
