:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0ea5e9;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --white: #ffffff;
  --container: 1200px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.section {
  padding: 100px 60px;
}

.bg-light {
  background-color: var(--bg-light);
}
.bg-dark {
  background-color: var(--bg-dark);
}
.text-white {
  color: var(--white);
}
.text-white .section-title {
  color: var(--white);
}
.text-white p {
  color: var(--text-light);
}

.center {
  text-align: center;
}
.accent {
  color: var(--primary);
}
.max-600 {
  max-width: 600px;
  margin: 0 auto;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

.text-block p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Header & Nav */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.nav__list a:hover,
.nav__list a.active {
  color: var(--primary);
}

.nav__btn {
  background: var(--bg-dark);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-btn span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Burger Menu */
.burger-menu {
  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;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.burger-menu.active {
  visibility: visible;
  opacity: 1;
}

.burger-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.burger-nav a {
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

/* Sections */
.hero {
  padding: 160px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;

  @media (max-width: 1124px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.mindset-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.audience-item {
  text-align: center;
}

.audience-item i {
  color: var(--primary);
  margin-bottom: 20px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.community__visual img {
  width: 100%;
  border-radius: 20px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.faq-question {
  padding: 25px 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question i {
  width: 20px;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content p {
  padding-bottom: 25px;
  color: var(--text-light);
}

.mindset__visual {
  text-align: center;
  width: 100%;
}
.mindset__visual img {
  width: 100%;
  border-radius: 20px;
}

/* Form */
.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-top: 40px;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.875rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"] {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-checkbox a {
  color: var(--primary);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand .logo {
  display: block;
  margin-bottom: 20px;
}

.footer__item {
  margin-bottom: 15px;
}

.footer__item strong {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}

.footer__item a,
.footer__item span {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 400px;
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3000;
  display: none;
}

.cookie-popup p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Responsive */
@media (min-width: 1024px) {
  .pc-nowrap {
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  .mindset-wrap,
  .community-grid {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__content {
    order: 2;
  }
  .hero__visual {
    order: 1;
  }
  h1 {
    font-size: 2.8rem;
  }
  .nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 20px;
  }
  h2 {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 30px;
  }
}

.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;
}

@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;
  }
}
