:root {
  --body: #18181b;
  --heading: #18181b;
  --white: #ffffff;
  --cream: #f7f5ed;
  --line: #dedcd5;
  --muted: #6e777d;
  --soft: #a3a3a3;
  --dark: #18181b;
  --dark-2: #323437;
  --purple: #7144f2;
  --mint: #46f8a3;
  --lime: #d9fc50;
  --pink: #fec0de;
  --yellow: #ffed88;
  --lavender: #b5a8f8;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  --font: "Archivo", sans-serif;
  --radius: 18px;
  --header: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font); color: var(--heading); line-height: 1.15; margin: 0 0 16px; font-weight: 700; letter-spacing: -0.03em; }
p { margin: 0 0 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 237, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand-name { font-weight: 800; font-size: 22px; letter-spacing: -0.04em; line-height: 1; }
.brand-name span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav-drop > button {
  background: none;
  border: 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 999px;
}
.nav a:hover, .nav a.active, .nav-drop > button:hover { color: var(--purple); }
.nav-drop { position: relative; }
.nav-drop > button { display: flex; align-items: center; gap: 6px; }
.nav-drop > button svg { width: 10px; height: 10px; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}
.nav-drop.open > button { color: var(--purple); }
.nav-drop.open .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 15px; }
.dropdown a:hover { background: var(--cream); color: var(--purple); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer; color: var(--body);
}
.icon-btn:hover { background: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 22px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: 0.2s ease;
  line-height: 1;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-lime { background: var(--lime); color: var(--dark); }
.btn-lime:hover { filter: brightness(0.96); }
.btn-outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-white { background: #fff; color: var(--dark); }
.menu-toggle { display: none; }

.page-hero {
  padding: 54px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(24,24,27,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.55;
  pointer-events: none;
}
.page-hero-row { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.page-hero h1 { font-size: clamp(42px, 5vw, 64px); margin: 0; }
.crumbs { color: var(--muted); font-size: 15px; }
.crumbs a:hover { color: var(--purple); }
.crumbs strong { color: var(--purple); font-weight: 600; }

.hero { padding: 30px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.kicker { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.hero h1 { font-size: clamp(46px, 5.4vw, 74px); font-weight: 800; letter-spacing: -0.045em; }
.hero h1 em { font-style: italic; font-weight: 500; }
.lead { color: #3d4246; font-size: 18px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.social-proof { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.avatars { display: flex; }
.avatars img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cream); margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.social-proof strong { display: block; font-size: 15px; }
.social-proof span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; min-height: 520px; }
.blob { position: absolute; border-radius: 40% 60% 55% 45%; z-index: 0; }
.blob-a { width: 280px; height: 280px; background: #c9b6ff; right: 20px; top: 30px; }
.blob-b { width: 180px; height: 180px; background: var(--yellow); left: 10px; bottom: 40px; }
.hero-photo {
  position: relative; z-index: 1; width: min(420px, 100%); margin-left: auto;
  border-radius: 28px; overflow: hidden; height: 500px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; z-index: 2; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow); padding: 16px; width: 250px;
}
.float-card.one { left: 0; top: 36px; }
.float-card.two { left: 24px; bottom: 24px; background: var(--mint); width: 210px; }
.float-card h3 { font-size: 16px; margin-bottom: 8px; }
.float-card p { font-size: 13px; color: var(--muted); margin: 0; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mini-stat { background: #e9ffe8; border-radius: 12px; padding: 10px; }
.mini-stat b { display: block; font-size: 18px; }
.mini-stat span { font-size: 12px; color: var(--muted); }

.section { padding: 80px 0; }
.section h2 { font-size: clamp(32px, 4vw, 48px); }
.center { text-align: center; }
.sub { color: var(--muted); max-width: 640px; }
.center .sub { margin-left: auto; margin-right: auto; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-row article { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat-row article:last-child { border-right: 0; }
.stat-row b { display: block; font-size: 32px; letter-spacing: -0.04em; }
.stat-row span { color: var(--muted); font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.photo-frame { border-radius: 24px; overflow: hidden; position: relative; }
.photo-frame img { width: 100%; height: 460px; object-fit: cover; }
.badge-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.badge { background: #fff; border-radius: 14px; padding: 12px; text-align: center; }
.badge b { display: block; font-size: 20px; }
.badge span { font-size: 12px; color: var(--muted); }

.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.platform { text-align: center; padding: 10px 18px; }
.icon-orb {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-size: 30px;
}
.orb-y { background: var(--yellow); }
.orb-l { background: var(--lime); }
.orb-p { background: var(--lavender); }
.platform h3 { font-size: 22px; }
.platform p { color: var(--muted); font-size: 15px; }

.lime-band {
  background: var(--lime);
  border-radius: 28px;
  padding: 42px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.lime-band h2 { font-size: clamp(28px, 3vw, 40px); max-width: 460px; margin: 0; }
.inline-form { display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: 16px; min-width: min(420px, 100%); }
.inline-form input { border: 0; height: 48px; flex: 1; padding: 0 12px; outline: none; background: transparent; }
.field-error { color: #9b1c31; font-size: 13px; margin-top: 6px; display: none; }
.field-error.show { display: block; }

.dark-band { background: var(--dark); color: #fff; border-radius: 28px; padding: 48px; }
.dark-band h2, .dark-band h3 { color: #fff; }
.achieve { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.achieve-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.a-stat { background: #242428; border-radius: 16px; padding: 18px; }
.a-stat.alt { background: var(--lime); color: var(--dark); }
.a-stat.alt b, .a-stat.alt span { color: var(--dark); }
.a-stat b { display: block; font-size: 28px; color: #fff; }
.a-stat span { color: #c8c8c8; font-size: 14px; }
.achieve img { width: 100%; height: 340px; object-fit: cover; border-radius: 20px; }

.team-grid, .card-grid, .price-grid, .project-grid, .news-grid, .quote-grid {
  display: grid; gap: 22px;
}
.team-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.project-grid { grid-template-columns: 1fr 1fr; }
.news-grid { grid-template-columns: repeat(3, 1fr); }
.quote-grid { grid-template-columns: 1fr 1fr; }

.person, .service-card, .price-card, .news-card, .quote-card, .panel {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow);
}
.person { overflow: hidden; }
.person img { width: 100%; height: 280px; object-fit: cover; }
.person div, .service-card, .news-card div, .quote-card { padding: 20px 22px 24px; }
.person h3, .service-card h3, .news-card h3, .quote-card h3 { font-size: 22px; margin-bottom: 4px; }
.role { color: var(--purple); font-size: 14px; font-weight: 600; }
.person p, .service-card p, .news-card p { color: var(--muted); font-size: 15px; }

.service-card { padding: 28px; min-height: 230px; display: flex; flex-direction: column; border: 1px solid #efece4; }
.service-card .icon-orb { margin: 0 0 16px; width: 64px; height: 64px; font-size: 24px; }
.service-card a { margin-top: auto; color: var(--purple); font-weight: 600; font-size: 15px; }
.project-card { position: relative; border-radius: 22px; overflow: hidden; min-height: 280px; display: block; }
.project-card img { width: 100%; height: 320px; object-fit: cover; transition: 0.4s; }
.project-card:hover img { transform: scale(1.04); }
.project-card span {
  position: absolute; left: 16px; bottom: 16px; background: #fff; border-radius: 999px;
  padding: 8px 14px; font-weight: 600; font-size: 14px;
}

.quote-card { padding: 28px; }
.quote-top { display: flex; justify-content: space-between; gap: 12px; }
.quote-mark { font-size: 42px; line-height: 1; color: var(--lavender); }
.stars { color: #f5b400; letter-spacing: 2px; margin-top: 12px; }

.pink-wrap {
  background: var(--pink);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.form-card { background: #fff; border-radius: 22px; padding: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; border: 1px solid #d9d6ce; border-radius: 12px; padding: 14px 14px;
  background: #fff; color: var(--body); font-size: 15px; outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--purple); }
input.invalid, textarea.invalid, select.invalid { border-color: #d1264a; background: #fff6f8; }
.form-note { font-size: 14px; color: var(--muted); }
.success-box {
  display: none; background: var(--lime); border-radius: 16px; padding: 22px;
  font-weight: 700; font-size: 18px; line-height: 1.4;
}
.success-box.show { display: block; }

.news-card { overflow: hidden; }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.tag { display: inline-block; background: var(--cream); border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; margin-bottom: 8px; }

.subscribe-band {
  position: relative; border-radius: 0; margin-top: 20px; overflow: hidden; color: #fff;
  background: #111 center/cover no-repeat;
}
.subscribe-band .veil { background: rgba(10,10,12,0.62); padding: 78px 20px; text-align: center; }
.subscribe-band h2 { color: #fff; font-size: clamp(36px, 5vw, 58px); }
.sub-form { display: flex; gap: 10px; justify-content: center; max-width: 520px; margin: 18px auto 0; }
.sub-form input { border-radius: 999px; border: 0; }

.site-footer { background: #121214; color: #e7e7e7; padding: 64px 0 0; position: relative; }
.site-footer::before {
  content: "";
  position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px), radial-gradient(circle at 80% 60%, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.footer-grid { position: relative; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.site-footer p, .site-footer li, .site-footer a { color: #c9c9c9; font-size: 15px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a:hover { color: var(--lime); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #fff; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand strong { font-size: 20px; }
.mail-line { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; background: #2a2a2e; color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.socials a:hover { background: var(--lime); color: #111; }
.footer-bottom {
  position: relative; margin-top: 36px; border-top: 1px solid #2c2c30;
  padding: 16px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 14px; color: #bdbdbd;
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.hours li { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid #2a2a2e; padding-bottom: 8px; }

.layout-2 { display: grid; grid-template-columns: 300px 1fr; gap: 28px; }
.side-card { background: #fff; border-radius: 18px; padding: 18px; box-shadow: var(--shadow); margin-bottom: 16px; }
.side-card h3 { font-size: 20px; }
.side-list a { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.side-list a:hover { color: var(--purple); }
.help-card { background: #efe7ff; border-radius: 18px; padding: 18px; margin-bottom: 16px; }
.help-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }
.check-list { list-style: none; padding: 0; margin: 0 0 16px; }
.check-list li { padding: 6px 0 6px 26px; position: relative; }
.check-list li::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); position: absolute; left: 0; top: 12px; }
.meta-bar { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); background: #fff; border-radius: 16px; overflow: hidden; margin: 18px 0; }
.meta-bar div { padding: 14px 16px; border-right: 1px solid var(--line); font-size: 14px; }
.meta-bar div:first-child { background: var(--lime); font-weight: 700; }
.gallery-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.gallery-3 img { height: 180px; width: 100%; object-fit: cover; border-radius: 14px; }
.pager { display: flex; justify-content: space-between; gap: 12px; background: #efe7ff; border-radius: 16px; padding: 8px; margin-top: 20px; }
.pager a { flex: 1; text-align: center; padding: 12px; font-weight: 700; border-radius: 12px; }
.pager a:hover { background: #fff; }

.faq details { background: #fff; border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { margin: 10px 0 0; color: var(--muted); }
.price-card { padding: 28px; border: 1px solid #efece4; display: flex; flex-direction: column; }
.price-card.featured { background: var(--dark); color: #fff; transform: translateY(-8px); }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card .amount { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; }
.price-card .amount span { font-size: 16px; font-weight: 500; }
.price-card ul { padding-left: 18px; color: var(--muted); flex: 1; }
.price-card.featured ul { color: #ddd; }
.long-copy h2 { font-size: 30px; margin-top: 28px; }
.long-copy h3 { font-size: 22px; margin-top: 20px; }
.long-copy p, .long-copy li { color: #3c4146; }
.paper { background: #fff; border-radius: 24px; padding: 36px 40px; box-shadow: var(--shadow); }

.search-modal, .nav-backdrop { display: none; }
.search-modal.open { display: grid; place-items: start center; position: fixed; inset: 0; background: rgba(18,18,20,0.45); z-index: 60; padding-top: 12vh; }
.search-panel { width: min(640px, calc(100% - 32px)); background: #fff; border-radius: 20px; padding: 18px; }
.search-panel input { margin-bottom: 10px; }
.search-panel a { display: block; padding: 10px 8px; border-bottom: 1px solid var(--line); font-weight: 600; }
.search-panel a:hover { color: var(--purple); }

@media (max-width: 1020px) {
  .menu-toggle { display: grid; }
  .nav {
    display: none; position: absolute; top: var(--header); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; padding: 12px 16px 20px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .dropdown { position: static; box-shadow: none; padding: 0 0 0 10px; }
  .hero-grid, .split, .achieve, .pink-wrap, .layout-2, .footer-grid { grid-template-columns: 1fr; }
  .stat-row, .team-grid, .card-grid, .price-grid, .news-grid, .quote-grid, .platform-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 0; }
  .blob { display: none; }
  .hero-photo { height: 420px; margin: 0 auto; }
  .float-card.one, .float-card.two { position: static; width: auto; margin-top: 12px; }
  .lime-band, .dark-band { padding: 28px; }
  .inline-form, .sub-form { flex-direction: column; min-width: 0; width: 100%; }
  .price-card.featured { transform: none; }
  .hide-sm { display: none; }
}
@media (max-width: 700px) {
  .stat-row, .team-grid, .card-grid, .price-grid, .news-grid, .quote-grid, .project-grid, .platform-grid, .badge-row, .gallery-3, .form-grid, .meta-bar, .achieve-stats {
    grid-template-columns: 1fr;
  }
  .stat-row article { border-right: 0; border-bottom: 1px solid var(--line); }
  .page-hero-row { flex-direction: column; align-items: flex-start; }
  .paper { padding: 22px 18px; }
  .header-actions .btn span { display: none; }
  .brand-name { font-size: 18px; }
}
