@font-face {
  font-family: "Syne";
  src: url(../fonts/Syne-VariableFont_wght.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #050a11;
  --surface: #0a111a;
  --surface-2: #131c29;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #bda376;
  --accent-2: #8b7355;
  --border: #1e293b;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.7);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus-visible {
  color: var(--text);
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  color: #ffffff;
}

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 8px;
}

.coord-mark {
  background: var(--surface-2);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 10, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.notice-badge {
  font-size: 0.75rem;
  background: var(--surface-2);
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(189, 163, 118, 0.1) 0%, transparent 50%),
              url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231e293b" fill-opacity="0.2"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content h1 {
  font-size: var(--fs-display);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.hero-supports {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--accent);
}

/* Forms */
.lead-form {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.lead-form h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.lead-form p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-sm);
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.checkbox-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* Base Wrapper for Images */
.image-wrapper {
  position: relative;
  /* overflow: hidden removed to allow badges to overlap */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md); /* Applies border-radius directly to the image */
}

/* Floating Elements (Now visible outside wrapper) */
.floating-stat {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--surface-2);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Specs Section */
.specs-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.specs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.spec-list {
  list-style: none;
  margin-top: var(--space-md);
}

.spec-list li {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-sm);
}

.spec-list i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 2px;
}

.spec-list strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.spec-list span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* Editorial Section */
.editorial-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.image-wrapper.framed {
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: calc(var(--radius-md) + 8px);
}

.spec-chip {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--surface);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.fact-box {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.fact-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.fact-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Process Section */
.process-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  counter-reset: process-counter;
}

.process-card {
  position: relative;
  padding: var(--space-md);
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  margin-bottom: var(--space-sm);
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.process-card:hover .step-number {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services */
.services-grid-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.section-header.center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-header .overline {
  justify-content: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.review-card {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.reviewer-initial {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
}

.reviewer-info strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  opacity: 0.7;
}

.image-wrapper.vertical {
  height: 100%;
  min-height: 500px;
}

.image-wrapper.vertical img {
  height: 100%;
  object-fit: cover;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--surface-2) 0%, transparent 40%);
  border-radius: var(--radius-md); /* Ensures gradient doesn't spill out */
  pointer-events: none;
}

/* Standard/Comparison Section Showcase Fix */
.standard-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.standard-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 0;
}

.standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
  align-items: center;
}

.comparison-list {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.vs-line {
  flex-grow: 1;
  height: 1px;
  background: dashed 1px var(--border);
  margin: 0 16px;
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

.comparison-list span {
  font-size: 0.9rem;
  color: #64748b;
  width: 40%;
}

.comparison-list strong {
  font-size: 0.9rem;
  color: #fff;
  width: 40%;
  text-align: right;
}

/* Updated Showcase wrapper to allow overlapping */
.image-wrapper.showcase {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
  background: var(--bg);
}

.image-wrapper.showcase img {
  height: 100%;
  border-radius: 50%; /* Image clipped internally */
  object-fit: cover;
}

.spec-badge-float {
  position: absolute;
  background: var(--surface-2);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.spec-badge-float span {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
}

.top-right {
  top: 10%;
  right: -30px;
}

.bottom-left {
  bottom: 10%;
  left: -30px;
}

/* Legal Pages Content */
.legal-content {
  max-width: 800px;
  margin: calc(70px + var(--space-xl)) auto var(--space-xl);
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.legal-content h1 {
  font-size: var(--fs-h2);
  color: var(--accent);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-sm);
}

.legal-content h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.legal-content ul {
  margin-bottom: var(--space-sm);
  padding-left: 20px;
  color: var(--text-muted);
}

.legal-content .date-updated {
  font-size: var(--fs-small);
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: block;
}

.callout-block {
  background: var(--surface-2);
  padding: var(--space-sm);
  border-left: 3px solid var(--accent);
  margin: var(--space-sm) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.thanks-block {
  text-align: center;
}
.thanks-block i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.thanks-block h1 {
  margin-bottom: var(--space-sm);
}
.thanks-block .btn-primary {
  display: inline-block;
  width: auto;
  padding: 12px 32px;
  margin-top: var(--space-md);
}

/* Footer */
.footer {
  margin-top: auto;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.company-data {
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.copyright {
  font-size: 0.8rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .specs-container, .editorial-grid, .testimonials-container, .standard-grid {
    grid-template-columns: 1fr;
  }
  .floating-stat, .spec-chip, .spec-badge-float {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    display: inline-flex;
    z-index: 1;
  }
  .standard-bg {
    display: none;
  }
  .comparison-list li {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .comparison-list span, .comparison-list strong {
    width: 100%;
    text-align: center;
  }
  .vs-line {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }
    .logo-text {
      font-size: 0.8rem;
    }
    .fact-box {
      flex-direction: column;
    }
}
