
:root {
  --bg: #f5f5f7;
  --bg-soft: #f5f5f7;
  --text: #1d1d1f;
  --muted: #515154;
  --primary: #fe7779;
  --primary-dark: #e66769;
  --secondary: #fb5a8f;
  --accent-orange: #ff6a00;
  --accent-yellow: #ffd60a;
  --card: #ffffff;
  --line: #d2d2d7;
  --green: #6fa87d;
  --yellow: #ffd60a;
  --orange: #ff7a00;
  --red: #ff3b58;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page {
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  height: 56px;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: var(--text);
}

.logo-img{
  height:36px;
  width:auto;
  display:block;
  object-fit:contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  color: var(--text);
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn.secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  text-align: center;
  padding: 24px 22px 56px;
  min-height: auto;
  position: relative;
  background: #f5f5f7;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #1d1d1f;
  padding: 0;
  border-radius: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 16px;
}

.hero-logo{
  height:72px;
  width:auto;
  margin:0 auto 28px auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 18px 32px rgba(254,119,121,0.18));
}

.hero p {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.002em;
  color: #6e6e73;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: -0.01em;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

section {
  padding: 110px 22px;
  margin: 60px 0;
  background: #ffffff;
}

section:nth-of-type(even) {
  background: #f5f5f7;
}

section > .section-header,
section > .cards,
section > .split,
section > .lead-box {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

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

h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1d1d1f;
}

.headline-break{
  display:block;
  margin-top:10px;
}

.section-header p {
  color: var(--muted);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.problem-text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.6;
  color: #1d1d1f;
  text-align: center;
}

.problem-text p {
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.card {
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
}

.card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.card img{
  height:80px;
  width:auto;
  object-fit:contain;
  margin:0 auto 16px auto;
  display:block;
  opacity:0.9;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.dual-showcase{
  padding-left:0;
  padding-right:0;
}

.showcase-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  max-width:1440px;
  margin:0 auto;
}

.showcase-panel{
  padding:80px 56px 64px;
  background:#f5f5f7;
  min-height:760px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow:visible;
}

.showcase-panel:nth-child(2){
  background:#ffffff;
}

.showcase-header{
  text-align:left;
  margin:0 0 42px 0;
  max-width:520px;
}

.showcase-header h2{
  text-align:left;
  font-size:clamp(38px, 3.9vw, 58px);
  line-height:1.05;
  margin-bottom:24px;
}

.showcase-header p{
  text-align:left;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-0.02em;
}

.showcase-image{
  width:min(78%, 420px);
  max-height:720px;
  height:auto;
  display:block;
  margin:56px auto 0 auto;
  border-radius:44px;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,0.18));
  object-fit:contain;
  opacity:0;
  transform:translateY(28px) scale(0.98);
  animation:wachaFadeUp 0.9s ease forwards;
}

@keyframes wachaFadeUp{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.showcase-image.wide{
  width:min(78%, 420px);
  max-width:420px;
  max-height:720px;
  object-fit:contain;
}

.feature-showcase-extra{
  margin-top:-60px;
}

.privacy {
  background: #f5f5f7;
  color: #1d1d1f;
}

.privacy h2{
  color:#1d1d1f;
}

.privacy .section-header p,
.privacy .card h3 {
  color: #1d1d1f;
}

.privacy .section-header p,
.privacy .card p {
  color: var(--muted);
}

.privacy .card {
  background: #ffffff;
  border-color: rgba(210, 210, 215, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
}

.story-section {
  padding: 120px 24px;
  background: #f5f5f7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.story-text h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  font-weight: 700;
  color: #1d1d1f;
}

.story-text p {
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 38px;
  color: #1d1d1f;
}

.story-text .highlight {
  font-weight: 700;
  color: #000;
}

.story-text .question {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 52px;
  margin-bottom: 52px;
  color: #000;
}

.story-photos {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-photos img {
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-text .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fe7779;
  color: white;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.lead-section {
  background: #f5f5f7;
}

.lead-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: white;
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 42px;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fffdfc;
  font-family: inherit;
  color: var(--text);
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.success {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: #edf7ef;
  color: #427553;
  font-weight: 800;
  font-size: 14px;
}

footer {
  padding: 24px 22px;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
  background: white;
}

@media (max-width: 980px) {
  .showcase-grid{
    grid-template-columns:1fr;
  }

  .showcase-panel{
    min-height:auto;
    padding:56px 28px;
  }

  .showcase-header{
    max-width:100%;
  }

  .hero,
  .lead-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .cards,
  .cards.cards-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .story-section {
    padding: 72px 24px;
  }

  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .story-text {
    width: 100%;
    max-width: 100%;
  }

  .story-text h2 {
    font-size: 52px;
    margin-bottom: 32px;
  }

  .story-text p {
    width: 100%;
    max-width: 100%;
    font-size: 20px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px;
  }

  .story-text .highlight {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }

  .story-text .question {
    font-size: 28px;
    line-height: 1.25;
    margin-top: 38px;
    margin-bottom: 38px;
  }

  .story-photos {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .story-photos img {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px !important;
  }

  .story-text .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 280px;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .hero,
  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-box {
    padding: 24px;
    border-radius: 30px;
  }

  .hero p {
    font-size: 21px;
  }

  h1 {
    font-size: 44px;
  }
}
