/* ============================================
   אושרת אזרזר — אתר אישי
   Based on JAMPA brand palette
   ============================================ */

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

:root {
  --bg:            #F7F8FD;
  --bg-card:       #FFFFFF;
  --bg-section:    #EEEAFF;
  --bg-soft:       #F7F6FF;
  --purple:        #7557E3;
  --purple-light:  #9478F0;
  --purple-mid:    #989EF5;
  --purple-soft:   #D3D6FF;
  --purple-tint:   rgba(117, 87, 227, 0.08);
  --teal:          #00B896;
  --dark:          #1A1A2E;
  --gray:          #696971;
  --gray-mid:      #3D3D45;
  --border:        rgba(117, 87, 227, 0.2);
  --border-soft:   rgba(117, 87, 227, 0.1);
  --font:          'Rubik', sans-serif;
  --radius:        16px;
  --radius-lg:     24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font);
  direction: rtl;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SHARED ────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--purple-tint);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.75;
}

.accent-purple { color: var(--purple); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 9px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(117,87,227,0.3);
}
.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(117,87,227,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--purple-tint);
  border-color: var(--purple);
}

.btn-large {
  padding: 17px 40px;
  font-size: 17px;
  border-radius: 40px;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 100px;
}

/* ── HEADER ──────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 253, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  gap: 1px;
}
.brand-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
  line-height: 1;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.6px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--dark); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(117,87,227,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--purple-tint);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.hero-name-sr {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.2px;
  margin-bottom: 24px;
}

.hero-content .subtitle {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero photo */
.hero-photo {
  position: relative;
}

.photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple-soft);
  box-shadow: 0 30px 80px rgba(117, 87, 227, 0.18);
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 2;
}
.photo-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(117,87,227,0.15) 100%);
  z-index: 3;
  pointer-events: none;
}
.photo-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--purple);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
}
.photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--purple);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.25;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.1;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.2px;
}

/* ── INTRO QUOTE ──────────────────────────────── */
.intro {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.big-quote {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
  margin: 16px 0 36px;
  color: var(--dark);
}

.intro-text {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 16px;
  text-align: right;
}

.intro-signature {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.5px;
  text-align: right;
}

/* ── PATHS ────────────────────────────────────── */
.paths {
  padding: 100px 0;
}

.paths-header {
  text-align: center;
  margin-bottom: 56px;
}
.paths-header .section-subtitle {
  margin: 16px auto 0;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.path-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(117, 87, 227, 0.15);
}

.path-num {
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 64px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -2px;
}

.path-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--purple-tint);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
.path-tag.jampa-tag {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.path-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.path-card > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.path-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.path-bullets li {
  position: relative;
  padding-right: 22px;
  margin-bottom: 8px;
  color: var(--gray-mid);
  font-size: 14px;
}
.path-bullets li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--purple);
  font-weight: 800;
  font-size: 14px;
}

.path-cta {
  margin-top: auto;
  color: var(--purple);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.2s;
}
.path-card:hover .path-cta {
  letter-spacing: 0.3px;
}

.path-jampa {
  background: linear-gradient(165deg, #EEEAFF 0%, #F7F6FF 100%);
  border-color: var(--border);
}

/* ── SERVICES ─────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-subtitle {
  margin: 14px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--purple-tint);
  color: var(--purple);
  font-size: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.services-cta {
  text-align: center;
}
.services-cta .cta-note {
  margin-top: 14px;
  color: var(--gray);
  font-size: 14px;
}

/* ── JAMPA SECTION ────────────────────────────── */
.jampa-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.jampa-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(117,87,227,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.jampa-intro-block {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.jampa-headline {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-top: 8px;
}

.jampa-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  box-shadow: 0 24px 64px rgba(117, 87, 227, 0.1);
  overflow: hidden;
}

/* Personal block */
.jampa-personal {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 44px 36px;
  background: linear-gradient(165deg, #EEEAFF 0%, #F7F6FF 100%);
  border-bottom: 1px solid var(--border-soft);
}

.jampa-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(117, 87, 227, 0.18);
  background: var(--purple-soft);
}

.jampa-personal-text {
  padding-top: 6px;
}

.jampa-tag-personal {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.jampa-personal-text p {
  color: var(--gray-mid);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 10px;
}
.jampa-personal-text p strong {
  color: var(--purple);
  font-weight: 700;
}

.jampa-signature {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.4px;
}

/* Logo strip divider */
.jampa-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 44px 8px;
}
.strip-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 120px;
}

.jampa-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.jampa-logo .logo-jampa {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: -0.6px;
  line-height: 1;
}
.jampa-logo .logo-icon {
  height: 42px;
  width: auto;
}
.jampa-logo .logo-by {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-right: 6px;
}

.jampa-card h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.jampa-intro {
  color: var(--gray-mid);
  font-size: 16px;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* Features */
.jampa-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 44px 0;
  margin-bottom: 36px;
}

.jf {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: right;
}
.jf-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
}
.jf strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.jf span {
  display: block;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

/* Pricing strip */
.jampa-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 32px;
  margin: 0 44px 32px;
  flex-wrap: wrap;
}

.jp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.jp-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.jp-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.jp-vat {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0;
}
.jp-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* CTA */
.jampa-cta {
  text-align: center;
  padding: 0 44px 44px;
}
.jampa-cta .cta-note {
  margin-top: 12px;
  color: var(--gray);
  font-size: 14px;
}

/* ── STORIES ──────────────────────────────────── */
.stories {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.stories .section-title {
  margin-bottom: 56px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: right;
}

.story-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.story-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.story-card.story-featured {
  background: linear-gradient(165deg, #EEEAFF 0%, #F7F6FF 100%);
  border-color: var(--border);
}

.story-quote-mark {
  position: absolute;
  top: 12px;
  left: 22px;
  font-size: 56px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.story-text {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.story-author {
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--purple-soft);
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(117,87,227,0.15);
}

.story-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 1px;
  line-height: 1.2;
}
.story-role {
  display: block;
  font-size: 11px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* ── FINAL CTA ────────────────────────────────── */
.cta-final {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(117,87,227,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-inner h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin: 18px 0 18px;
}

.cta-sub {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.contact-form input,
.contact-form select {
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form input::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form select:focus { border-color: var(--purple); }

.contact-form select {
  grid-column: span 2;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gray) 50%), linear-gradient(135deg, var(--gray) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1.4em), calc(100% - 14px) calc(1.4em);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
}

.contact-form button {
  grid-column: span 2;
  padding: 17px 32px;
  border-radius: 10px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(117,87,227,0.35);
}
.contact-form button:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(117,87,227,0.4);
}

.contact-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--gray);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover {
  color: var(--purple-light);
}

.contact-or {
  color: var(--gray);
  opacity: 0.7;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-name {
  font-size: 15px;
}

.footer-copy {
  color: var(--gray);
  font-size: 13px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-photo {
    order: -1;
  }
  .photo-wrap {
    max-width: 320px;
  }

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

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

  .jampa-features {
    grid-template-columns: 1fr;
  }

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

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

  .hero { padding: 56px 0 72px; }
  .intro, .paths, .services, .jampa-section, .stories, .cta-final {
    padding: 64px 0;
  }

  .jampa-personal {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px 28px;
  }
  .jampa-avatar {
    margin: 0 auto;
    width: 130px;
    height: 130px;
  }
  .jampa-personal-text {
    text-align: right;
  }
  .jampa-features {
    padding: 8px 24px 0;
  }
  .jampa-pricing {
    gap: 16px;
    margin: 0 24px 24px;
  }
  .jampa-cta {
    padding: 0 24px 32px;
  }
  .jampa-logo-strip {
    padding: 24px 24px 4px;
  }
  .jp-divider {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form input,
  .contact-form select,
  .contact-form button {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .jampa-logo .logo-jampa {
    font-size: 32px;
  }
  .jampa-logo .logo-icon {
    height: 34px;
  }
}
