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

:root {
  --berry: #C94F7C;
  --berry-dark: #a33c62;
  --berry-light: #F2C5D7;
  --green: #4A9464;
  --green-light: #D6EDD8;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE3;
  --text: #2D2D2D;
  --text-soft: #5A5A5A;
  --text-light: #8A7F7A;
  --white: #FFFFFF;
  --border: #E8DDD6;
  --shadow: 0 4px 24px rgba(201, 79, 124, 0.10);
  --radius: 16px;
  --radius-sm: 8px;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

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

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--berry);
  font-weight: normal;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--green);
}

nav a {
  color: var(--text-soft);
  margin-left: 28px;
  font-size: 0.92rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--berry);
  text-decoration: none;
}

.header-cta {
  background: var(--berry);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--berry-dark) !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #FDF1F6 0%, #FDF8F3 50%, #F0F8F2 100%);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 92vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  gap: 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--berry);
}

.hero-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--berry);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(201, 79, 124, 0.30);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--berry-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 79, 124, 0.38);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  display: inline-block;
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 16px 24px;
  border-radius: 50px;
  transition: color 0.2s;
}

.btn-secondary:hover {
  color: var(--berry);
  text-decoration: none;
}

.hero-note {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(201, 79, 124, 0.18);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.hero-badge-icon {
  font-size: 1.6rem;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-badge span {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ===== Section: What you'll draw ===== */
.learn-section {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  color: var(--text-soft);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.learn-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.learn-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.learn-card h3 {
  margin-bottom: 8px;
  font-family: var(--font);
  font-size: 1.15rem;
}

.learn-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Section: How it works ===== */
.format-section {
  background: linear-gradient(180deg, #FDF1F6 0%, var(--cream) 100%);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.format-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.format-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--berry);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: bold;
}

.step-content h3 {
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.format-visual img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(201, 79, 124, 0.14);
  width: 100%;
}

/* ===== Section: Materials ===== */
.materials-section {
  background: var(--white);
}

.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.materials-img img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(74, 148, 100, 0.12);
}

.materials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1.5rem;
}

.materials-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mat-content strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.97rem;
}

.mat-content span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* ===== Section: Examples / Portfolio ===== */
.examples-section {
  background: var(--cream-dark);
}

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

.example-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.25s;
}

.example-item:hover {
  transform: scale(1.02);
}

.example-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.example-caption {
  background: var(--white);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ===== Section: FAQ ===== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  line-height: 1.4;
  gap: 12px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--berry);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--berry-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--berry);
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Section: Lead form ===== */
.form-section {
  background: linear-gradient(135deg, #3A7D52 0%, #4A9464 100%);
  padding: 100px 0;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.form-copy h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.form-copy p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.90);
  font-size: 0.95rem;
}

.form-benefits li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: bold;
  flex-shrink: 0;
}

.lead-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.lead-form h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.lead-form .form-sub {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--berry);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-agree {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-agree a {
  color: var(--berry);
}

.lead-form .btn-primary {
  width: 100%;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #1E1A1B;
  color: rgba(255,255,255,0.70);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.35rem;
  color: var(--berry-light);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.60);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--berry-light);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.40);
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--text);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.20);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.87rem;
  line-height: 1.5;
  flex: 1;
  max-width: 700px;
}

.cookie-text a {
  color: var(--berry-light);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--berry);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--berry-dark);
}

.btn-cookie-close {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.btn-cookie-close:hover {
  background: rgba(255,255,255,0.18);
}

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FDF1F6 0%, var(--cream) 60%, #F0F8F2 100%);
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 64px rgba(201, 79, 124, 0.12);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-card h1 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== Legal pages ===== */
.legal-page {
  background: var(--cream);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h1 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.86rem;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}

.legal-content p, .legal-content li {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-company {
  margin-top: 48px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ===== Mobile nav ===== */
.nav-links {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    margin-left: 0;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .header-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px 60px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    order: -1;
    margin-bottom: 12px;
  }

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

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

  .materials-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .success-card {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  section {
    padding: 56px 0;
  }

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

  .lead-form {
    padding: 28px 20px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 10px 14px;
  }
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text-block {
  animation: fadeUp 0.7s ease both;
}

.hero-image {
  animation: fadeUp 0.7s 0.15s ease both;
}
