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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8A5B8A;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  line-height: 1.6;
}

/* ===== Buttons ===== */
.btn-gradient {
  display: inline-block;
  padding: 18px 44px;
  background: #8A5B8A;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(138, 91, 138, 0.3);
  font-family: inherit;
  letter-spacing: 0.3px;
}

.btn-gradient:hover {
  background: #7a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 91, 138, 0.4);
}

.btn-gradient:active {
  transform: translateY(0);
}

.btn-gradient-lg {
  padding: 22px 52px;
  font-size: 19px;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 100px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-content {
  padding-top: 10px;
}

.hero-badge {
  display: inline-block;
  background: rgba(138, 91, 138, 0.08);
  color: #8A5B8A;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.hero p {
  font-size: 17px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-quote {
  margin: 0 0 24px;
  padding: 20px 24px;
  background: rgba(138, 91, 138, 0.06);
  border-left: 4px solid #8A5B8A;
  border-radius: 16px;
  font-size: 15px;
}

.hero-quote p {
  font-size: 15px;
  color: #444;
  font-weight: 600;
  margin-bottom: 12px;
  font-style: normal;
}

.hero-features {
  list-style: none;
  margin-bottom: 0;
}

.hero-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.hero-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8A5B8A;
  font-weight: 700;
  font-size: 16px;
}

.hero .hero-cta-note {
  font-size: 14px;
  color: #999;
  margin-top: 14px;
  line-height: 1.5;
}

/* Hero right — photo card */
.hero-card {
  background: #f9f7f9;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #eee;
}

.hero-card-body {
  padding: 24px 28px 28px;
}

.hero-card-caption {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.hero-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.hero-card-title-hero {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

/* ===== About Section ===== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 20px;
  display: block;
  background: #e8e2d8;
}

.about-photo-decoration {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid #8A5B8A;
  border-radius: 24px;
  z-index: -1;
}

.about-text .lead {
  font-size: 18px;
  color: #1b2a3b;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.about-quote {
  margin: 24px 0 0;
  padding: 24px 28px;
  background: rgba(138, 91, 138, 0.06);
  border-left: 4px solid #8A5B8A;
  border-radius: 16px;
  font-size: 15px;
}

.about-quote p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.about-quote p:last-child {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 600;
}



.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.fact-card {
  background: #f8f6f3;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-3px);
}

.fact-card-highlight {
  background: #8A5B8A;
}

.fact-card-highlight .fact-value,
.fact-card-highlight .fact-label {
  color: #fff;
}

.fact-value {
  font-size: 32px;
  font-weight: 800;
  color: #1b2a3b;
  margin-bottom: 4px;
  line-height: 1.1;
}

.fact-label {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.4;
}

.fact-card-wide {
  grid-column: span 1;
}

/* ===== What You Get Section ===== */
.benefits {
  background: #f8f6f3;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header .section-subtitle {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(138, 91, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: #8A5B8A;
}

.benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1b2a3b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

.benefits-note {
  text-align: center;
  margin-top: 44px;
  font-size: 16px;
  color: #4a5568;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== Final CTA Section ===== */
.cta-final {
  text-align: center;
  padding: 100px 0;
  background: #fff;
}

.cta-label {
  display: inline-block;
  background: rgba(138, 91, 138, 0.08);
  color: #8A5B8A;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cta-final h2 {
  font-size: 38px;
  font-weight: 800;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final p {
  font-size: 17px;
  color: #555;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== Article Page ===== */
.article-page {
  padding: 60px 0 40px;
  background: #fff;
}

.article-container {
  max-width: 760px;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.article-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}

.article-author {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.article-author-title {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.article-page h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  margin-bottom: 28px;
}

.article-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-page h3 {
  font-size: 18px;
  font-weight: 700;
  color: #8A5B8A;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-page p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.article-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.article-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8A5B8A;
  font-weight: 700;
}

.article-cta {
  margin-top: 48px;
  padding: 40px 36px;
  background: rgba(138, 91, 138, 0.06);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(138, 91, 138, 0.12);
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.article-cta-hint {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.highlight {
  background: rgba(138, 91, 138, 0.15);
  color: #8A5B8A;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== Footer ===== */
.footer {
  background: #f0edf0;
  padding: 28px 0;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 34px;
  }

  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-features li {
    font-size: 14px;
  }

  .btn-gradient-lg {
    padding: 18px 36px;
    font-size: 16px;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-photo-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-final {
    padding: 60px 0;
  }

  .cta-final h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-card-body {
    padding: 16px 20px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-gradient {
    padding: 16px 30px;
    font-size: 15px;
  }
}

/* ===== MAX Landing (index) ===== */
.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.landing__bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg.jpg') center / cover no-repeat;
  transform: scale(1.03);
}

.landing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.94) 42%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(255, 255, 255, 0.28) 78%,
    rgba(255, 255, 255, 0.12) 100%
  );
}

.landing__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(48px, 8vh, 96px);
}

.landing__content {
  max-width: 560px;
}

.landing__label {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: #4185f6;
  margin-bottom: 18px;
}

.landing__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.landing__list {
  list-style: none;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.landing__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.45;
}

.landing__list li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4185f6 0%, #4930e0 100%);
}

.landing__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
}

.landing__note {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #666;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}

.btn-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4185f6 0%, #4930e0 48%, #964bda 98%);
  color: #fff;
  font-family: inherit;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 28px rgba(73, 48, 224, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-max:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(73, 48, 224, 0.42);
  filter: brightness(1.04);
}

.btn-max:active {
  transform: translateY(0);
}

.btn-max__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.landing__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing__phone {
  width: min(100%, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

@media (max-width: 960px) {
  .landing__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .landing__content {
    max-width: none;
    margin: 0 auto;
  }

  .landing__list li {
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 55%,
      rgba(255, 255, 255, 0.78) 100%
    );
  }

  .landing__phone {
    width: min(72vw, 320px);
  }

  .landing__cta {
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .landing__list li {
    font-size: 15px;
  }

  .landing__list li::before {
    width: 8px;
    height: 8px;
  }

  .landing__cta {
    max-width: none;
  }

  .btn-max {
    padding: 16px 20px;
    font-size: 16px;
  }

  .btn-max__icon {
    width: 24px;
    height: 24px;
  }
}
