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

:root {
  --primary: #8496f8;
  --primary-light: #aab5ff;
  --primary-dark: #6b7ff0;
  --bg-page: #f5f5f7;
  --bg-light: #fbfbfd;
  --bg-white: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --dark: #111111;
  --dark-light: #1d1d1f;
  --text: #1d1d1f;
  --text-light: #6e6e73;
  --text-on-dark: #f5f5f7;
  --line: rgba(29, 29, 31, 0.08);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 36px 80px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-lg: 32px;
  --transition: 0.35s ease;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg-page) 60%, #edf0f4 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(2.9rem, 6.4vw, 5.15rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-light);
  line-height: 1.75;
  max-width: 65ch;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section {
  padding: 7rem 0;
}

.section--flush-top {
  padding-top: 0;
}

.section--dark {
  background: linear-gradient(180deg, #101114 0%, #16181d 100%);
  color: var(--text-on-dark);
}

.section--dark p {
  color: rgba(237, 235, 233, 0.8);
}

.section--light {
  background: var(--bg-light);
}

.section--tinted {
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(245,245,247,0.95) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header p {
  margin: 1rem auto 0;
}

.section-header--narrow p,
.section-header--narrow h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,252,0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(29,29,31,0.04);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  background: rgba(255,255,255,0.86);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 68px;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.nav__logo span {
  color: var(--primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: rgba(132, 150, 248, 0.14) !important;
  color: var(--primary-dark) !important;
  padding: 0.65rem 1.15rem !important;
  border-radius: 999px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(132, 150, 248, 0.22);
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: rgba(132, 150, 248, 0.22) !important;
  color: var(--primary-dark) !important;
}

/* Dropdown Menu */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font-family: inherit;
  position: relative;
}

.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle::after {
  width: 100%;
}

.nav__dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 0.65rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}

.nav__dropdown-menu a::after {
  display: none !important;
}

.nav__dropdown-menu a:hover {
  background: rgba(132,150,248,0.06);
  color: var(--primary);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline,
.btn--ghost {
  background: rgba(255,255,255,0.75);
  color: var(--text);
  border: 1px solid rgba(29,29,31,0.08);
  backdrop-filter: blur(12px);
}

.btn--outline:hover,
.btn--ghost:hover {
  background: rgba(255,255,255,0.95);
  color: var(--text);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--dark:hover {
  background: var(--dark-light);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--dark);
}

.btn--white:hover {
  background: var(--bg-light);
  color: var(--dark);
}

.btn--lg {
  padding: 1.05rem 2.2rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-group--center {
  justify-content: center;
}

/* Hero */
.hero {
  padding: 9.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero--apple {
  text-align: center;
}

.hero__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.9rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(29,29,31,0.06);
  color: var(--text-light);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero__lead {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.hero__support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 980px;
  margin: 1.7rem auto 0;
}

.hero__support-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(132,150,248,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  text-align: left;
}

.hero__support-item strong {
  font-size: 1rem;
  color: var(--text);
}

.hero__support-item span {
  color: var(--text-light);
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
  margin-top: 2.4rem;
  width: 100%;
  max-width: 1120px;
  min-height: 700px;
  border-radius: 44px;
  padding: 3rem;
  background:
    radial-gradient(circle at top right, rgba(132,150,248,0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.9), rgba(240,242,247,0.7)),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241,243,247,0.92));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
}

.hero__visual-copy {
  position: absolute;
  top: 3rem;
  left: 3rem;
  max-width: 360px;
  text-align: left;
  z-index: 2;
  padding: 1.75rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.52));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 45px rgba(0,0,0,0.05);
}

.hero__kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero__visual-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  margin-bottom: 1rem;
}

.hero__visual-copy p {
  max-width: 32ch;
}

.hero__visual-media {
  position: absolute;
  inset: 40px 40px 40px 380px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(210,214,222,0.55), rgba(251,251,253,0.1));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.hero__visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.hero__insight-band {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero__insight {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 92px;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  text-align: left;
}

.hero__insight-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.hero__insight strong {
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
}

.hero__floating {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.hero__floating strong {
  font-size: 1.5rem;
  color: var(--text);
}

.hero__floating span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.hero__floating--top {
  top: 4.25rem;
  right: 4.25rem;
}

.hero__floating--bottom {
  left: 3rem;
  bottom: 8.9rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem;
  min-height: 210px;
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.6);
}

.metric__value {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
}

.metric__label {
  color: var(--text-light);
  font-size: 0.98rem;
  max-width: 28ch;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.5rem;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  padding: 2.4rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.94)),
    linear-gradient(135deg, #eef3fb 0%, #ffffff 100%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  inset: auto auto 36% -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,150,248,0.2), rgba(132,150,248,0));
}

.showcase-card--feature {
  background:
    radial-gradient(circle at top right, rgba(132,150,248,0.18), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(241,244,249,0.96));
}

.showcase-card__eyebrow {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.showcase-card h3,
.showcase-card p,
.showcase-card a {
  position: relative;
  z-index: 1;
}

.showcase-card h3 {
  margin-bottom: 0.9rem;
}

.split--heroic {
  gap: 5rem;
}

.panel {
  background: var(--surface-strong);
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
}

.panel--image img {
  display: flex;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.split__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface-strong);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 113, 227, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.card__link svg {
  transition: transform var(--transition);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--surface-strong);
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(242,244,248,0.96));
  border-radius: 40px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-md);
}

.cta-section h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  margin: 0 auto 2rem;
  max-width: 50ch;
}

.cta-section--apple {
  padding: 5.5rem 2rem;
}

/* Process / Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 2rem;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(132, 150, 248, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.step h4 {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(40,40,40,0.12);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(132, 150, 248, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #d8d5d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.blog-card__content {
  padding: 1.75rem;
}

.blog-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.blog-card__title {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Page Header */
.page-header {
  padding: 10rem 0 5rem;
  background:
    radial-gradient(circle at top center, rgba(0,113,227,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,245,247,0.98));
  text-align: center;
}

.page-header p {
  margin: 1rem auto 0;
  max-width: 55ch;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list--spacious {
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(0, 113, 227, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Split Section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, #e9edf4 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #0f1012;
  color: var(--text-on-dark);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  color: rgba(237, 235, 233, 0.6);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 30ch;
}

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: rgba(237, 235, 233, 0.5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(237, 235, 233, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(237, 235, 233, 0.5);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(237, 235, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .hero__grid,
  .split,
  .contact-grid,
  .showcase-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .showcase-card {
    min-height: 320px;
  }

  .hero__support,
  .hero__insight-band {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 760px;
  }

  .hero__visual-copy {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero__visual-media {
    inset: 220px 24px 24px 24px;
  }

  .hero__insight-band {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .hero__floating--top {
    top: 240px;
    right: 2rem;
  }

  .hero__floating--bottom {
    left: 2rem;
    bottom: 9.75rem;
  }

  .split--reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border: 1px solid rgba(29,29,31,0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 1rem;
    min-width: 0;
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .nav__dropdown-toggle {
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav__toggle {
    display: flex;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 7.8rem 0 3.5rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero__visual {
    min-height: 780px;
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 30px;
  }

  .hero__visual-media {
    inset: 252px 16px 16px 16px;
    border-radius: 24px;
  }

  .hero__support {
    margin-top: 1.25rem;
  }

  .hero__support-item {
    text-align: center;
  }

  .hero__insight-band {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero__insight {
    min-height: auto;
  }

  .hero__floating {
    padding: 0.85rem 1rem;
    border-radius: 18px;
  }

  .hero__floating strong {
    font-size: 1.15rem;
  }

  .hero__floating--top {
    top: 270px;
    right: 1rem;
  }

  .hero__floating--bottom {
    bottom: 16.5rem;
    left: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .card-grid,
  .testimonial-grid,
  .blog-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    margin: 0;
    border-radius: 28px;
  }
}

.testimonial-grid--apple {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial--apple {
  min-height: 100%;
}

.section--immersive {
  position: relative;
  overflow: hidden;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-step {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.process-step__index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
}

.process-step h3 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.process-step p {
  color: rgba(245,245,247,0.72);
}

@media (max-width: 768px) {
  .btn-group--center {
    align-items: stretch;
  }

  .btn-group--center .btn {
    width: 100%;
  }

  .testimonial-grid--apple,
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Prompt Library (prompts.html)
   ───────────────────────────────────────────────────────────────────────── */

.prompt-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.prompt-state--error {
  color: #c2410c;
}

.prompt-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.prompt-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prompt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.prompt-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.prompt-card__head-text {
  flex: 1;
  min-width: 0;
}

.prompt-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}

.prompt-card__desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  max-width: 60ch;
}

.prompt-card__category {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(132, 150, 248, 0.14);
  color: var(--primary-dark);
  text-transform: uppercase;
}

.prompt-card__code-wrap {
  position: relative;
}

.prompt-card__code {
  background: var(--dark);
  color: #f5f5f7;
  font-family: 'JetBrains Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 1.5rem;
  padding-right: 7.5rem;
  border-radius: 14px;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  max-height: 480px;
  overflow-y: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.prompt-card__code code {
  font-family: inherit;
  color: inherit;
  background: transparent;
  padding: 0;
  display: block;
}

.prompt-card__copy {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}

.prompt-card__copy:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.prompt-card__copy:active {
  transform: translateY(0);
}

.prompt-card__copy svg {
  flex-shrink: 0;
}

.prompt-card__copy.is-copied {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.45);
  color: #d1fae5;
}

.prompt-card__copy.is-error {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.45);
  color: #fee2e2;
}

@media (max-width: 720px) {
  .prompt-card {
    padding: 1.25rem;
  }
  .prompt-card__head {
    flex-direction: column;
    gap: 0.75rem;
  }
  .prompt-card__title {
    font-size: 1.2rem;
  }
  .prompt-card__code {
    font-size: 0.8rem;
    padding: 1.1rem;
    padding-top: 3.25rem;
    padding-right: 1.1rem;
  }
  .prompt-card__copy {
    top: 0.65rem;
    right: 0.65rem;
  }
  .prompt-card__copy-label {
    display: none;
  }
}
