@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff7a45;
  --orange-strong: #ff8f60;
  --apricot: #ffc7ad;
  --ivory: #fff7f0;
  --paper: #f7eee5;
  --ink: #11141a;
  --ink-soft: #171b23;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(17, 20, 26, 0.08);
  --text-dark: rgba(17, 20, 26, 0.72);
  --text-soft: rgba(255, 247, 240, 0.66);
  --shadow-dark: 0 30px 80px rgba(7, 10, 15, 0.34);
  --shadow-light: 0 28px 60px rgba(32, 18, 10, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 69, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 199, 173, 0.16) 0%, transparent 20%),
    linear-gradient(180deg, #151922 0%, #11141a 46%, #0d1016 100%);
}

::selection {
  background: rgba(255, 122, 69, 0.28);
  color: var(--ivory);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f1218;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 122, 69, 0.5);
  border-radius: 999px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container,
.container-narrow {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 69, 0.28);
  background: rgba(255, 122, 69, 0.12);
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd7c3 0%, var(--orange) 100%);
  box-shadow: 0 0 18px rgba(255, 122, 69, 0.55);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-title.light {
  color: var(--ivory);
}

.section-title.dark {
  color: var(--ink);
}

.section-sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.75;
}

.section-sub.light {
  color: var(--text-soft);
}

.section-sub.dark {
  color: var(--text-dark);
}

.glass-panel {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.paper-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 69, 0.12) 0%, transparent 22%),
    linear-gradient(180deg, #fff9f5 0%, #f6ecdf 100%);
  border: 1px solid rgba(17, 20, 26, 0.08);
  box-shadow: var(--shadow-light);
}

#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled,
#nav.always-solid {
  background: rgba(10, 13, 19, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(4, 6, 10, 0.22);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
}

.nav-logo span,
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 247, 240, 0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ivory);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--orange-strong) 0%, var(--orange) 100%);
  color: white;
  box-shadow: 0 16px 36px rgba(255, 122, 69, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ivory);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.pricing-btn:hover,
.contact-card:hover,
.feature-card:hover,
.workflow-card:hover,
.story-card:hover {
  transform: translateY(-2px);
}

.nav-burger {
  display: none;
  background: none;
  border: 0;
  color: var(--ivory);
  padding: 8px;
}

.mobile-menu {
  display: none;
  padding: 0 24px 18px;
  background: rgba(10, 13, 19, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 14px 0;
  color: rgba(255, 247, 240, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-cta {
  margin-top: 14px;
  padding: 14px 16px;
  text-align: center;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-strong) 0%, var(--orange) 100%);
  color: white !important;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 118px 0 64px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 69, 0.18) 0%, transparent 23%),
    radial-gradient(circle at 82% 22%, rgba(255, 199, 173, 0.15) 0%, transparent 20%),
    linear-gradient(160deg, #fef8f4 0%, #f5ecdf 42%, #181d26 100%);
}

.hero-orb,
.section-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero-orb.one {
  top: 110px;
  left: -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.32) 0%, transparent 72%);
}

.hero-orb.two {
  right: -40px;
  bottom: 50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 213, 192, 0.3) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  color: var(--ink);
}

.hero-title {
  margin-top: 26px;
  max-width: 720px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.hero-title .accent {
  color: var(--orange);
}

.hero-sub {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(17, 20, 26, 0.68);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  max-width: 620px;
}

.hero-stat {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 20, 26, 0.08);
  box-shadow: 0 18px 40px rgba(44, 28, 20, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: rgba(17, 20, 26, 0.56);
}

.hero-stage {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: 18px;
}

.hero-shell {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 15, 20, 0.96) 0%, rgba(22, 27, 35, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
}

.hero-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-appbrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-appbrand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.hero-appbrand strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 199, 173, 0.86);
}

.hero-appbrand span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 247, 240, 0.68);
}

.hero-chip {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 122, 69, 0.12);
  border: 1px solid rgba(255, 122, 69, 0.18);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-strong);
}

.hero-preview {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 122, 69, 0.06) 100%),
    linear-gradient(180deg, #1a202a 0%, #12161d 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 15, 20, 0.86) 100%);
}

.hero-preview-main {
  position: absolute;
  inset: 18px 18px 112px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8ecdf 0%, #f0d5be 100%);
}

.hero-preview-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-toolstrip {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-tool {
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-tool img {
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
}

.hero-tool span {
  font-size: 11px;
  color: rgba(255, 247, 240, 0.72);
}

.hero-floating-note {
  position: absolute;
  right: -28px;
  bottom: 42px;
  max-width: 220px;
  padding: 16px 16px 14px;
  border-radius: 22px;
}

.hero-floating-note strong {
  display: block;
  font-size: 13px;
  color: var(--ivory);
}

.hero-floating-note p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 247, 240, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(6, 8, 12, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(255, 122, 69, 0.3);
  background: linear-gradient(180deg, rgba(255, 122, 69, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 122, 69, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 122, 69, 0.16);
}

.feature-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ivory);
}

.feature-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 247, 240, 0.62);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.story-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.story-visual {
  min-height: 520px;
  padding: 18px;
}

.story-visual-frame {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9efe5 0%, #edd7c3 100%);
}

.story-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 484px;
  object-fit: cover;
}

.story-surface {
  display: grid;
  gap: 18px;
}

.story-copy,
.story-proof {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.story-copy h3,
.story-proof h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.story-copy p,
.story-proof p {
  margin-top: 14px;
  line-height: 1.75;
}

.story-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.story-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: rgba(17, 20, 26, 0.72);
  line-height: 1.65;
  list-style: none;
}

.story-list strong {
  color: var(--orange);
}

.story-list .index {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.14);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--ivory);
}

.proof-item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 247, 240, 0.62);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  padding: 28px;
  border-radius: 28px;
}

.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 122, 69, 0.12);
  color: var(--orange);
  font-weight: 700;
}

.workflow-card h3 {
  margin-top: 18px;
  font-size: 22px;
  color: var(--ink);
}

.workflow-card p {
  margin-top: 10px;
  color: rgba(17, 20, 26, 0.68);
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 32px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 122, 69, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 122, 69, 0.28);
  box-shadow: 0 26px 50px rgba(255, 122, 69, 0.16);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.18);
  color: #ffdacc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 240, 0.5);
}

.pricing-card.featured h3 {
  color: #ffd4bf;
}

.pricing-price {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.pricing-price strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 0.9;
  color: var(--ivory);
}

.pricing-price span {
  color: rgba(255, 247, 240, 0.56);
}

.pricing-desc,
.pricing-note {
  margin-top: 14px;
  color: rgba(255, 247, 240, 0.66);
  line-height: 1.7;
}

.pricing-list {
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.pricing-list li {
  display: flex;
  gap: 12px;
  line-height: 1.65;
  color: rgba(255, 247, 240, 0.82);
}

.pricing-list .check {
  color: var(--orange);
}

.page-hero {
  padding: 144px 0 56px;
  background:
    radial-gradient(circle at left top, rgba(255, 122, 69, 0.12) 0%, transparent 22%),
    linear-gradient(180deg, #151922 0%, #11141a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb {
  color: rgba(255, 247, 240, 0.48);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--orange-strong);
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.4;
}

.page-hero-date {
  margin-top: 12px;
  color: rgba(255, 247, 240, 0.5);
  font-size: 14px;
}

.legal-body,
.contact-body {
  padding: 56px 0 96px;
}

.legal-block {
  margin-bottom: 16px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-h2 {
  color: var(--ivory);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.legal-h3 {
  color: rgba(255, 247, 240, 0.82);
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.legal-p {
  color: rgba(255, 247, 240, 0.64);
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 10px;
}

.legal-p:last-child {
  margin-bottom: 0;
}

.legal-p a,
.footer-email {
  color: var(--orange-strong);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.contact-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.contact-card:hover {
  border-color: rgba(255, 122, 69, 0.28);
  background: linear-gradient(180deg, rgba(255, 122, 69, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 122, 69, 0.12);
  font-size: 24px;
}

.contact-card-title {
  margin-top: 16px;
  color: rgba(255, 247, 240, 0.48);
  font-size: 13px;
}

.contact-card-value {
  margin-top: 6px;
  color: var(--orange-strong);
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}

.contact-card-desc {
  margin-top: 8px;
  color: rgba(255, 247, 240, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.contact-form {
  margin-top: 18px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.form-sub {
  margin-top: 10px;
  color: rgba(255, 247, 240, 0.6);
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.form-label {
  color: rgba(255, 247, 240, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(255, 122, 69, 0.64);
  background: rgba(255, 255, 255, 0.07);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 247, 240, 0.26);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,247,240,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: #1a1d26;
}

.form-submit,
.pricing-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange-strong) 0%, var(--orange) 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(255, 122, 69, 0.22);
}

.form-submit.sent {
  background: linear-gradient(135deg, #35d27b 0%, #22c55e 100%);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.22);
}

footer {
  padding: 54px 0 30px;
  background: #0d1016;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-tagline {
  margin-top: 12px;
  color: rgba(255, 247, 240, 0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  color: rgba(255, 247, 240, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 247, 240, 0.62);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 247, 240, 0.34);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-layout,
  .feature-grid,
  .workflow-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-floating-note {
    right: 12px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-title {
    font-size: clamp(44px, 17vw, 68px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-meta,
  .proof-grid,
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-toolstrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-floating-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .contact-form,
  .legal-block,
  .workflow-card,
  .feature-card,
  .pricing-card,
  .story-copy,
  .story-proof {
    padding: 24px;
  }
}
