﻿:root {
  color-scheme: light;
  --bg: #f5f2ee;
  --ink: #0f0f12;
  --accent: #ff6b35;
  --accent-dark: #d9521f;
  --muted: #6a6660;
  --card: #ffffff;
  --shadow: 0 28px 60px rgba(15, 15, 18, 0.18);
}

.theme-dark {
  color-scheme: dark;
  --bg: #0d0f14;
  --ink: #f4f1ea;
  --accent: #ff8a5c;
  --accent-dark: #ff6b35;
  --muted: #b7b1a6;
  --card: #151821;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.6);
  outline-offset: 3px;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #fff 0%, #f7f0e8 40%, #f2eee8 100%);
  color: var(--ink);
  line-height: 1.6;
}

body.theme-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 138, 92, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 214, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(120, 140, 255, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0d0f14 0%, #0a0c11 100%);
}

body.theme-dark .lead {
  color: #d9d2c6;
}

body.theme-dark .muted,
body.theme-dark .trust {
  color: var(--muted);
}

body.theme-dark .nav a {
  color: #efe9e2;
}

body.theme-dark .nav a::after {
  background: var(--accent);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.site-header {
  position: relative;
  padding: 32px 6vw 120px;
  overflow: hidden;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #2e2c29;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1.5px solid rgba(15, 15, 18, 0.2);
}

body.theme-dark .btn-ghost {
  border-color: rgba(245, 242, 238, 0.25);
  color: #f1ece4;
}

.btn-ghost:hover {
  background: rgba(15, 15, 18, 0.06);
  transform: translateY(-2px);
}

body.theme-dark .btn-ghost:hover {
  background: rgba(240, 233, 224, 0.06);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

body.theme-dark .hero-card {
  border: 1px solid rgba(245, 242, 238, 0.08);
  background: linear-gradient(160deg, #151821 0%, #12151c 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

body.theme-dark .hero-card .metric {
  color: rgba(245, 242, 238, 0.7);
}

body.theme-dark .hero-card h2 {
  color: #f5f2ee;
}

body.theme-dark .card-header .dot {
  opacity: 0.9;
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ff605c; }
.yellow { background: #ffbd44; }
.green { background: #00ca4e; }

.card-body h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.metric {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.section {
  padding: 96px 6vw;
  position: relative;
  z-index: 1;
}


.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.grid {
  display: grid;
  gap: 24px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services article,
.steps article,
.pricing article {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 15, 18, 0.08);
}

body.theme-dark .services article,
body.theme-dark .steps article,
body.theme-dark .pricing article {
  background: linear-gradient(160deg, rgba(21, 24, 33, 0.98) 0%, rgba(18, 20, 28, 0.98) 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 242, 238, 0.06);
}

.accent {
  background: linear-gradient(130deg, #fff1e7 0%, #fef9f5 50%, #fff 100%);
}

body.theme-dark .accent {
  background: linear-gradient(130deg, #141821 0%, #12151d 50%, #10131a 100%);
}

body.theme-dark .badge {
  background: rgba(255, 138, 92, 0.18);
  color: #ffb193;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-dark);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.pricing .price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 12px 0;
}

.pricing ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing li {
  margin-bottom: 8px;
}

.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact {
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 15, 18, 0.08);
}

.contact-copy > p {
  max-width: 520px;
}

.contact-actions {
  display: grid;
  align-self: stretch;
}

.accent-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 214, 196, 0.28));
  border: 1px solid rgba(255, 107, 53, 0.18);
}

.accent-card h3 {
  font-size: 1.35rem;
}

.contact-actions-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 4px;
}

.contact-note {
  margin: 12px 0 12px;
  color: var(--muted);
  font-weight: 500;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 15, 18, 0.03);
}

body.theme-dark .contact-item {
  background: rgba(245, 242, 238, 0.05);
}

body.theme-dark .contact-card {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 242, 238, 0.06);
}

body.theme-dark .accent-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(20, 20, 26, 0.8));
  border-color: rgba(255, 138, 92, 0.25);
}

body.theme-dark .contact-icon {
  background: rgba(255, 107, 53, 0.2);
  color: #ffd3c2;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--muted);
  font-weight: 500;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.form {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(15, 15, 18, 0.12);
  display: grid;
  gap: 16px;
}

.msg {
  font-size: 0.95rem;
  color: #c2410c;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 10px 12px;
  border-radius: 12px;
}

.success {
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  border: 1px solid rgba(15, 15, 18, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

body.theme-dark input,
body.theme-dark textarea {
  background: #121319;
  color: var(--ink);
  border-color: rgba(245, 242, 238, 0.18);
}

body.theme-dark .site-footer {
  border-top-color: rgba(245, 242, 238, 0.08);
}

body.theme-dark .footer-links a {
  color: var(--muted);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 107, 53, 0.3);
  border-color: var(--accent);
}

.site-footer {
  padding: 32px 6vw 48px;
  border-top: 1px solid rgba(15, 15, 18, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

