@charset "utf-8";
:root {
  --bg: #0f0f10;
  --bg-soft: #17181a;
  --text: #ffffff;
  --text-sub: #cfcfcf;
  --text-muted: #9b9b9b;
  --white: #ffffff;
  --light: #f7f7f7;
  --light-line: #ececec;
  --accent: #c96a2b;
  --accent-soft: rgba(201, 106, 43, 0.12);
  --accent-deep: #a65421;
  --max: 1200px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --header-height: 82px;
}

body.menu-open {overflow: hidden;}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
}

.section {
  padding: 110px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
}

.section-subtitle {
  /* max-width: 840px; */
  color: #555;
  font-size: 18px;
  margin: 0 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s ease;
  cursor: pointer;
  border: 0;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(201, 106, 43, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #16171c;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-dark:hover {
  background: #20222a;
}

.btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.btn-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(15, 15, 16, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  white-space: nowrap;
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
}
.logo img{
  max-height: 34px;
  margin-right: 5px;
}

.logo span {
  color: var(--accent);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a,
.mobile-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-desktop a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-desktop a:hover,
.mobile-nav a:hover,
.nav-desktop a.active,
.mobile-nav a.active {
  color: var(--white);
}

.nav-desktop a:hover::after,
.mobile-nav a:hover::after,
.nav-desktop a.active::after,
.mobile-nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(201, 106, 43, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

.mobile-menu {
  display: none;
}

#top{padding-top: 83px; box-sizing: border-box;}
.hero {
  position: relative;
  overflow: hidden;
  background: #111 url(../../images/main/main_visual.png) no-repeat center / cover;
}
.hero::before{
  content: '';
  display: block;
  clear: both;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero .container {
  width: min(calc(100% - 0px), 1440px);
  margin: 0 auto;
}

.hero-overlay {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background:
    linear-gradient(90deg, rgba(15,15,16,0.78) 0%, rgba(15,15,16,0.64) 28%, rgba(15,15,16,0.24) 58%, rgba(15,15,16,0.08) 100%),
    url("./c16a3f84-8f6f-47be-9ae9-14252810901d.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(100%, 1200px);
  padding: 90px 60px;
  color: #fff;
}

.hero-cert-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.hero-cert-badge {
  position: absolute;
  top: 50px;
  right: 20px;
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  /* box-shadow: 0 14px 30px rgba(0,0,0,0.22); */
  backdrop-filter: blur(8px);
}

.hero-cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-cert-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-cert-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}

.hero-cert-title {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-cert-title .accent {
  color: var(--accent);
}

.hero-cert-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 620px;
}

.hero-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  font-weight: 800;
  color: #fff;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 70px;
  max-width: 720px;
}

.hero-desc strong {
  color: #fff;
}

.hero-slogan {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c96a2b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 500;
}

.hero-point::before {
  content: "•";
  color: #d99a68;
  font-size: 16px;
  line-height: 1;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.about-copy {
  font-size: 17px;
  color: #444;
}

.about-copy p {
  margin: 0 0 18px;
}

.about-history p{
  margin: 0 0 16px;
  font-size: 22px;;
  font-weight: 600;
  padding-left: 16px;
  box-sizing: border-box;
}

.history-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  text-align: left;
}

.history-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid var(--light-line);
  color: #333;
}

.history-list strong {
  color: var(--accent);
  margin-right: 8px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--light-line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);
}

.about-card-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.about-card-desc {
  color: #555;
  font-size: 15px;
}

.highlights {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.highlight-card {
  position: relative;
  min-height: 180px;
  padding: 26px 18px 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(201, 60, 100, 0.18);
  box-shadow: 0 14px 35px rgba(0,0,0,0.04);
  text-align: center;
}

.highlight-num {
  position: absolute;
  top: -12px;
  left: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c92b5d;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(201, 43, 93, 0.2);
}

.highlight-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.highlight-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.service {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111;
}

.service-card p {
  margin: 0 0 14px;
  color: #555;
  font-size: 15px;
}

.service-card ul {
  margin: 0;
  padding-left: 12px;
  color: #666;
  font-size: 14px;
}
.service-card li + li {
  margin-top: 6px;
}

.process-wrap {
  background: #111214;
  color: var(--white);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.process-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.process-head h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.process-head p {
  margin: 0;
  color: #c6c6c6;
  max-width: 460px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.process-num {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.process-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--white);
}

.process-card p {
  margin: 0;
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.55;
}

.refund-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #efefef;
  font-size: 14px;
}

.refund-note strong {
  color: #fff;
}

.cta-band {
  padding: 26px 0;
  background: #fff;
}

.cta-band-inner {
  border: 1px solid var(--light-line);
  border-radius: 26px;
  padding: 50px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.04);
  background: linear-gradient(135deg, #ffffff 0%, #faf7f3 100%);
}

.cta-band h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.contact-info {
  padding: 34px;
  border-radius: 28px;
  background: #111214;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.contact-info p {
  margin: 0 0 24px;
  color: #d1d1d1;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-item strong {
  display: block;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}

.info-item span {
  color: #ececec;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--light-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  height: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid #ddd;
  padding: 0 16px;
  font-size: 15px;
  color: #111;
  background: #fff;
  outline: none;
  transition: 0.2s ease;
}

.field textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 106, 43, 0.10);
}

.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 24px;
  color: #666;
  font-size: 14px;
}

.agree input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.submit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: #0f0f10;
  color: #d7d7d7;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: flex;
}
.footer-brand img{max-height: 40px; margin-right: 5px;}

.footer-brand span {
  color: var(--accent);
}

.footer-copy {
  color: #aaaaaa;
  max-width: 560px;
  margin: 0;
}

.footer-info {
  display: grid;
  gap: 5px;
  font-size: 14px;
  color: #c9c9c9;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #8d8d8d;
}

@media (max-width: 1180px) {
  .highlight-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .about-grid{text-align: center;}
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }
  #top{padding-top: 75px;}
  .section {
    padding: 84px 0;
  }

  .header-inner {
    height: var(--header-height);
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 9, 0.92);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1001;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-inner {
    width: min(calc(100% - 32px), 420px);
    margin: 96px auto 0;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav a {
    font-size: 18px;
    color: #fff;
    width: fit-content;
  }

  .hero-overlay {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(15,15,16,0.72) 0%, rgba(15,15,16,0.58) 45%, rgba(15,15,16,0.24) 100%),
      url("./c16a3f84-8f6f-47be-9ae9-14252810901d.png") center top / 100% auto no-repeat;
  }

  .hero-content {
    padding: 72px 24px 54px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
  .highlight-grid,
  .service-grid,
  .about-card-grid,
  .form-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-head,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band-inner > div{width: 100%;}

  .contact-info,
  .contact-form,
  .process-wrap {
    padding: 26px;
  }
  .hero-cert-badge {
    position: unset;
    float: right;
    width: 100px;
    height: 100px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-overlay {
    min-height: 560px;
    align-items: flex-start;
  }

  .hero-content {
    padding: 58px 20px 40px;
  }

  .hero-cert-wrap {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
  }

  .hero-cert-badge {
    width: 72px;
    height: 72px;
  }

  .hero-cert-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-cert-desc {
    font-size: 13px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .hero-desc br{display: none;}
  .about-copy{font-size: 16px;}
  .hero-slogan{font-size: 20px;}
  .about-history p{font-size: 20px;}
  .history-list li{font-size: 16px;}

  .hero-actions,
  .contact-actions,
  .submit-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-point {
    font-size: 12px;
    padding: 8px 12px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .cta-band-inner {
    padding: 24px 20px;
  }

  .cta-band h3,
  .contact-info h3,
  .process-head h3 {
    font-size: 28px;
  }

  .process-head p br{display: none;}

  .contact-info,
  .contact-form {
    border-radius: 22px;
  }

  .footer-brand {
    font-size: 24px;
  }
  .footer-brand img{max-height: 37px;}
  .footer-copy{font-size: 16px;}
}
