:root {
  --red: #e11d2e;
  --red-dark: #c41827;
  --red-soft: #fff1f2;
  --black: #0d0d0d;
  --ink: #151515;
  --muted: #6d6d6d;
  --line: #ececec;
  --bg: #f7f5f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 15, 15, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 15, 15, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --pill: 999px;
  --container: 1200px;
  --header: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 100px 0; }
.section-tight { padding: 80px 0; }
.section-soft { background: var(--bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: 24px; }
p { color: var(--muted); }

.lead { font-size: 17px; max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--pill);
  padding: 15px 26px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); }
.btn .arr { font-size: 16px; line-height: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  height: var(--header);
  overflow: visible;
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong { font-size: 18px; font-weight: 800; }
.brand-text small { font-size: 13px; color: var(--muted); font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a, .drop-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}

.main-nav a:hover, .drop-btn:hover, .main-nav a.active { color: var(--red); }

.dropdown { position: relative; z-index: 60; }

.drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 0;
  cursor: pointer;
}

.drop-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 210px;
  background: var(--white);
  background-clip: padding-box;
  border-top: 8px solid transparent;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  z-index: 80;
  pointer-events: auto;
}

.dropdown:hover .drop-menu,
.dropdown.open .drop-menu,
.dropdown:focus-within .drop-menu { display: grid; }

.drop-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  pointer-events: auto;
}

.drop-menu a:hover { background: var(--red-soft); color: var(--red); }

.header-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.page-hero {
  background:
    radial-gradient(circle at 78% 40%, rgba(225,29,46,0.18), transparent 28%),
    var(--black);
  color: var(--white);
  min-height: 380px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 50px 0 40px;
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: var(--white); }

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfcfcf;
  font-size: 14px;
  margin-top: 16px;
}

.crumb-home {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.hero-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000);
}

.home-hero {
  background: #111 url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.55) 48%, rgba(8,8,8,0.2) 100%);
}

.home-hero .container { position: relative; z-index: 2; padding: 90px 0; max-width: 760px; margin-left: 8vw; width: auto; }
.home-hero h1 { color: #fff; max-width: 720px; }
.home-hero p { color: #d8d8d8; max-width: 560px; margin: 18px 0 28px; }

.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.icon-card .ico {
  width: 46px;
  height: 46px;
  color: var(--red);
  margin-bottom: 16px;
}

.icon-card h3 { font-size: 20px; margin-bottom: 8px; }
.icon-card p { font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat strong {
  display: block;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.stat span { color: var(--muted); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.split.reverse { grid-template-columns: 0.95fr 1.05fr; }

.media-stack { position: relative; min-height: 460px; }

.media-stack img,
.rounded-img {
  border-radius: 28px;
  object-fit: cover;
}

.media-main {
  width: 78%;
  height: 420px;
}

.media-float {
  position: absolute;
  width: 54%;
  height: 250px;
  right: 0;
  bottom: 0;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-grid, .team-grid, .price-grid, .project-grid, .blog-grid, .step-grid, .faq-grid {
  display: grid;
  gap: 24px;
}

.feature-grid { grid-template-columns: repeat(4, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }
.price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.project-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid { grid-template-columns: 0.9fr 1.2fr 0.9fr; }
.step-grid { grid-template-columns: repeat(3, 1fr); }

.feature-card, .team-card, .price-card, .post-card, .step-card, .testi-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-card { padding: 28px 24px; }
.feature-card .ico { width: 42px; height: 42px; color: var(--red); margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; font-size: 22px; }

.cta-bar {
  background: var(--black);
  color: #fff;
  border-radius: 36px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-bar h3 { color: #fff; font-size: 30px; max-width: 620px; }

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 230px;
}

.project-card img { width: 100%; height: 250px; object-fit: cover; transition: 0.4s ease; }
.project-card:hover img { transform: scale(1.06); }

.filters {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 36px 0 40px;
}

.filters button {
  border: 0;
  background: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.filters button.active, .filters button:hover { color: var(--ink); }

.testi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.testi-card { padding: 36px; }
.stars { color: #f5b301; margin-bottom: 16px; letter-spacing: 2px; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.person strong { display: block; }
.person span { font-size: 13px; color: var(--muted); }

.arrows { display: flex; gap: 10px; margin-top: 22px; }
.arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
}

.side-photos { display: grid; gap: 16px; }
.side-photos img { width: 100%; height: 210px; object-fit: cover; border-radius: 22px; }

.help-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--pill);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  width: fit-content;
  margin-top: -28px;
  position: relative;
}

.form-box { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field {
  position: relative;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  background: #f3f3f3;
  border-radius: 14px;
  padding: 16px 44px 16px 16px;
  outline: none;
  color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; padding-right: 16px; }
.field .fi {
  position: absolute;
  right: 14px;
  top: 16px;
  color: var(--muted);
  width: 18px;
  height: 18px;
}

.field.error input, .field.error select, .field.error textarea {
  box-shadow: inset 0 0 0 1.5px var(--red);
}

.err {
  display: none;
  color: var(--red);
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}

.field.error .err { display: block; }

.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

.success-msg {
  display: none;
  background: #ecfdf3;
  color: #166534;
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 700;
}

.success-msg.show { display: block; }

.step-card { padding: 32px 24px; text-align: center; box-shadow: none; background: transparent; }
.step-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid #ffd0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.team-card { padding: 18px 18px 28px; text-align: center; }
.team-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 18px; }
.team-card h3 { margin-top: 18px; font-size: 20px; }
.share {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  background: #fff;
}

.price-card { padding: 34px 28px; }
.price-card.featured { background: var(--black); color: #fff; }
.price-card.featured h3, .price-card.featured .amount, .price-card.featured p, .price-card.featured li { color: #fff; }
.price-card .amount { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; margin: 10px 0 18px; }
.price-card .amount small { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card.featured .amount small { color: #c9c9c9; }
.price-card ul { display: grid; gap: 10px; margin: 18px 0 26px; }
.price-card li { list-style: none; padding-left: 22px; position: relative; color: var(--ink); }
.price-card li::before { content: "+"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--pill);
  padding: 8px 8px 8px 16px;
  margin: 22px 0 36px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.switch {
  width: 46px;
  height: 26px;
  background: #e5e5e5;
  border-radius: 20px;
  position: relative;
  border: 0;
  cursor: pointer;
}

.switch.on { background: var(--red); }
.switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s ease;
}

.switch.on i { left: 23px; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item p { display: none; padding: 12px 0 6px; }
.faq-item.open p { display: block; }
.faq-item .plus { color: var(--red); font-size: 24px; }

.dark-cta {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
}

.dark-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.dark-cta h2 { color: #fff; max-width: 620px; }
.dark-cta p { color: #c7c7c7; margin: 16px 0 28px; max-width: 520px; }

.subscribe-form {
  display: flex;
  background: #fff;
  border-radius: var(--pill);
  padding: 6px;
  max-width: 460px;
}

.subscribe-form input {
  flex: 1;
  border: 0;
  padding: 12px 18px;
  border-radius: var(--pill);
  outline: none;
}

.orbit {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  margin-left: auto;
  display: grid;
  place-items: center;
  position: relative;
}

.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
}

.orbit::before { inset: 22px; }
.orbit::after { inset: 44px; }

.orbit-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #333;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #111;
  z-index: 1;
}

.site-footer { background: var(--bg); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 { margin-bottom: 18px; font-size: 18px; }
.footer-col p { margin: 14px 0 18px; max-width: 300px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col li { list-style: none; }
.footer-col a:hover { color: var(--red); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}
.socials a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-contact { display: grid; gap: 12px; }
.footer-contact span { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }

.copyright {
  border-top: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.legal-links a:hover { color: var(--red); }

.legal-page { background: var(--white); }
.legal-content { max-width: 900px; }
.legal-content h2 { font-size: 28px; margin: 34px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 26px 0 10px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 16px; }

.center { text-align: center; }
.center .lead, .center h2 { margin-left: auto; margin-right: auto; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

.logo-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  opacity: 0.55;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.float-deco {
  position: absolute;
  width: 90px;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
}

@media (max-width: 1100px) {
  .icon-row, .feature-grid, .stats, .project-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid, .step-grid, .blog-grid, .footer-grid, .split, .split.reverse, .testi-wrap, .page-hero .container, .dark-cta-inner {
    grid-template-columns: 1fr;
  }
  .home-hero { min-height: 620px; }
  .home-hero .container { margin-left: auto; width: min(var(--container), calc(100% - 40px)); }
  .media-main { width: 100%; }
  .media-float { position: static; width: 80%; margin-top: -60px; margin-left: auto; }
  .orbit { margin: 20px auto 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav, .header-cta {
    display: none;
  }
  .main-nav.open, .header-cta.open {
    display: flex;
  }
  .site-header { height: auto; }
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 0;
  }
  .main-nav.open {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
    padding: 10px 0 16px;
  }
  .header-cta.open { width: 100%; margin: 0 0 10px; }
  .drop-btn { padding: 8px 0; }
  .drop-menu {
    position: static;
    box-shadow: none;
    padding: 6px 0 0 12px;
    display: none;
    border-top: 0;
    background: transparent;
  }
  .dropdown:hover .drop-menu { display: none; }
  .dropdown.open .drop-menu,
  .dropdown:focus-within .drop-menu { display: grid; }
  .icon-row, .feature-grid, .stats, .project-grid, .team-grid, .form-row { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; align-items: flex-start; padding: 28px; }
  .hero-photo { height: 220px; mask-image: none; border-radius: 18px; }
  .section { padding: 70px 0; }
}
