:root {
  --bg-dark: #05070b;
  --bg-darker: #020305;
  --bg-alt: #10131b;
  --accent: #ffb400;
  --accent-soft: rgba(255, 180, 0, 0.12);
  --text-main: #f5f5f7;
  --text-muted: #a2a5b3;
  --border-soft: rgba(255, 255, 255, 0.05);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141824 0, #020308 48%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb400, #ff8a00);
  color: #111;
  box-shadow: 0 14px 32px rgba(255, 138, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 11, 0.94),
    rgba(5, 7, 11, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo span span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 2.8vw + 1.2rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-features li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent);
}

.hero-image {
  position: relative;
}

.hero-photo-placeholder {
  height: 260px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #2b3040, #0f121a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #141824 0, #05070b 40%, #020307 100%);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.3rem;
  background: rgba(9, 12, 20, 0.9);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

/* Cards / services */

.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card,
.pricing-card {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  background: rgba(10, 13, 22, 0.96);
  border: 1px solid var(--border-soft);
}

.card p,
.pricing-card ul {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.4rem 0 0.6rem;
  color: var(--accent);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  margin-bottom: 0.25rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-box {
  background: rgba(8, 11, 19, 0.96);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(7, 10, 18, 0.96);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid var(--border-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0.6rem 0.7rem;
  background: rgba(3, 6, 14, 0.94);
  color: var(--text-main);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.small-text {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(to top, #020307, #05070b);
  padding: 1.1rem 0 1.3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .steps-grid,
  .cards-grid,
  .pricing-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .main-nav {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    padding: 0.8rem 1.5rem 1rem;
    background: rgba(5, 7, 11, 0.97);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .main-nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-inner .btn-primary {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-photo-placeholder {
    height: 200px;
  }

  .section {
    padding: 3rem 0;
  }
}
