:root {
  --bg: #fdfaf6;
  --text: #1b1b1b;
  --accent: #ff6b35;
  --secondary: #2541b2;
  --muted: #e8e4de;
  --container: 1200px;
  --font-serif: "Georgia", serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.intro-block {
  background-image: url("./image/rm378-09f\ \(1\).jpg");
  background-position: center;
  background-size: cover;
}

.accent {
  color: var(--accent);
}
.center {
  text-align: center;
}
.title-lg {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 40px;
}
.section-label {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

/* Header */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}

.header.scrolled {
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
}

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

.logo img {
  width: 50px;
  height: 50px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  margin-left: 32px;
  font-weight: 500;
  font-size: 15px;
}

.burger-open {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* Menu Fullscreen */
.menu-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-fullscreen.active {
  transform: translateY(0);
}
.burger-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-item {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 32px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}

/* Intro */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.intro__title h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
}
.intro__text p {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #444;
}
.intro__examples {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.mini-card {
  background: var(--muted);
  padding: 40px;
  border-radius: 40px 4px;
  transition: 0.3s;
}
.mini-card:hover {
  transform: translateY(-5px);
  border-radius: 4px 40px;
}
.card-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  padding: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: 0.3s;
}
.card-accent {
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 60px 20px;
}
.bento-card i {
  color: var(--accent);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
}
.bento-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Deep Dive */
.deep-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.deep-text p {
  font-size: 18px;
  margin-bottom: 24px;
}
.geometric-chaos {
  width: 100%;
  aspect-ratio: 1;
  background-image: url("./image/lovely-flowers-concept-with-leaves-notebook\ \(1\).jpg");
  background-position: center;
  background-size: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s infinite alternate;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

/* Fear */
.fear-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fear-img img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(1);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-item {
  border-top: 2px solid var(--accent);
  padding-top: 32px;
}
.step-header {
  font-size: 48px;
  color: var(--accent);
  opacity: 0.2;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 16px;
}

/* Value */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  text-align: center;
  padding: 40px;
  background: var(--muted);
  border-radius: 4px;
}
.value-card i {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

/* FAQ */
.faq-item {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ddd;
}
.faq-q {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 20px;
}
.faq-a {
  color: #555;
  font-size: 17px;
  max-width: 900px;
}

/* Contact & Form STRICT COLUMN */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.form-container {
  width: 100%;
}
.vertical-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}
.form-field input {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  background: white;
  font-size: 16px;
  border-radius: 4px;
}
.captcha-row {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.captcha-row input {
  width: 100px;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-checkbox input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}
.long-label {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.long-label a {
  text-decoration: underline;
  color: var(--accent);
}

.submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-col .logo {
  color: white;
  margin-bottom: 20px;
  display: block;
}
.footer-col p {
  color: #888;
  margin-bottom: 12px;
}
.links a {
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 40px;
  color: #444;
  font-size: 13px;
}

/* Cookies */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 32px;
  border: 1px solid var(--text);
  max-width: 380px;
  z-index: 5000;
  box-shadow: 20px 20px 0 var(--secondary);
  display: none;
}
.cookie-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  margin-top: 16px;
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .burger-open {
    display: block;
  }
  .intro__grid,
  .bento,
  .deep-grid,
  .fear-split,
  .steps-grid,
  .value-grid,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
}

@media (min-width: 1025px) {
  .long-label {
    white-space: nowrap;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    font-size: 28px;
  }
}
