﻿:root {
  --bg: #050b0f;
  --surface: rgba(255,255,255,0.92);
  --surface-soft: rgba(255,255,255,0.08);
  --text: #f8fafc;
  --text-muted: #d1d5db;
  --accent: #3ebd6c;
  --accent-soft: rgba(62, 189, 108, 0.14);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(62,189,108,0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #080d11 0%, #05080b 100%);
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  padding: 1rem 0;
  background: rgba(5, 10, 15, 0.95);
  border-bottom: 1px solid rgba(62, 189, 108, 0.18);
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}
.hero {
  padding: 4rem 0 3rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.3fr 0.95fr;
}
.hero-copy-wrapper {
  max-width: 620px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
}
h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.02;
}
.hero-copy,
.card-copy,
.section-header p,
.condition-section p,
.contact-section p {
  color: var(--text-muted);
}
.section-header h2,
.condition-section h2,
.contact-section h2 {
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--accent);
  color: #05120d;
  box-shadow: 0 18px 40px rgba(62, 189, 108, 0.25);
}
.button-secondary {
  background: #f8fafc;
  color: #05120d;
  border: 1px solid rgba(5, 10, 15, 0.12);
}
.hero-card,
.service-card,
.addon-card,
.contact-card,
.gallery-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(62, 189, 108, 0.16);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
  color: #0f172a;
}
.hero-card h2,
.service-card h3,
.gallery-card p,
.addon-card span,
.addon-card strong,
.price-row,
.service-card ul,
.card-note {
  color: #0f172a;
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 1.5rem;
}
.hero-image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.hero-image-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(5, 10, 15, 0.9);
  color: #f8fafc;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(62, 189, 108, 0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  color: #0f172a;
}
.price-tag strong {
  font-size: 1.75rem;
}
.section-light {
  background: transparent;
  padding: 4rem 0;
}
.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: #334155;
}
.service-card li::before {
  content: '•';
  color: var(--accent);
  display: inline-block;
  width: 1rem;
}
.card-note {
  margin-top: 1.35rem;
  color: #64748b;
  font-size: 0.96rem;
}
.gallery-section {
  padding: 3rem 0;
}
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-card img {
  border-radius: 20px;
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}
.gallery-card p {
  margin: 1rem 0 0;
  color: #334155;
  font-weight: 600;
}
.condition-section {
  padding: 3rem 0;
}
.condition-grid {
  display: grid;
  gap: 1.75rem;
}
.condition-table {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.condition-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.condition-row.header {
  background: rgba(62, 189, 108, 0.12);
  font-weight: 700;
}
.condition-row:last-child {
  border-bottom: 0;
}
.addons-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.addon-card {
  display: grid;
  gap: 0.85rem;
}
.addon-card span {
  font-weight: 700;
  color: #0f172a;
}
.addon-card strong {
  color: #334155;
}
.contact-section {
  padding: 4rem 0;
}
.contact-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}\n.contact-card p {
   color: #0f172a;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
}
.footer-inner {
  display: flex;
  justify-content: center;
}
@media (max-width: 920px) {
  .hero-grid,
  .contact-card,
  .condition-grid,
  .cards-grid,
  .addons-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 1.5rem);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 2.5rem;
  }
  .button {
    width: 100%;
  }
}











