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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

.header-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2744;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #1a2744;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a2744;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2744, #2d4a8a);
  color: #fff;
  padding: 120px 20px 60px;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 56px;
  text-align: left;
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
}

.hero-photo {
  position: relative;
  flex: 0 0 42%;
  max-width: 440px;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 2.1;
  opacity: 0.9;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  padding-left: 24px;
  display: inline-block;
  text-align: left;
  margin-bottom: 36px;
}

.hero-name {
  margin-bottom: 40px;
}

.hero-name-ja {
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-name-en {
  font-weight: 400;
  font-size: 0.95rem;
  opacity: 0.75;
}

.hero-name-role {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-block;
  padding: 18px 48px;
  background: #c9a84c;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}

.btn-cta:hover {
  background: #b0912e;
  transform: translateY(-2px);
}

.btn-sub {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-sub:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-cta-note {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: -28px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero-badges {
  font-size: 0.82rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

/* ===== Stats ===== */
#stats {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 12px;
}

.stat-item + .stat-item {
  border-left: 1px solid #eee;
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: #c9a84c;
  margin-left: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ===== Common ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Problem ===== */
#problem {
  background: #f5f7fa;
  padding: 80px 0;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.problem-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2744;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
}

.problem-card p {
  font-size: 1.05rem;
}

/* ===== Profile ===== */
#profile {
  padding: 80px 0 0;
}

/* -- Upper: 2 columns -- */
.profile-top {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
}

.profile-left {
  flex-shrink: 0;
  width: 280px;
  text-align: center;
}

.profile-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.profile-id {
  line-height: 1.7;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.profile-kana {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
}

.profile-name-en {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}

.profile-role {
  font-size: 0.88rem;
  color: #1a2744;
  font-weight: 500;
}

.profile-company {
  font-size: 0.82rem;
  color: #999;
}

.profile-right {
  flex: 1;
}

/* -- Info list -- */
.profile-info {
  margin-bottom: 28px;
}

.profile-info li {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.profile-info-icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.profile-info-label {
  flex-shrink: 0;
  font-weight: 700;
  color: #1a2744;
  min-width: 100px;
}

/* -- Book card -- */
.book-card {
  position: relative;
  background: #fff;
  border-left: 4px solid #c9a84c;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.book-card + .book-card {
  margin-top: 24px;
}

.book-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: #c9a84c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 4px;
}

.book-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.book-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.book-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}

.book-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

.book-link {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 16px;
  background: #c9a84c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.book-link:hover {
  background: #b3923c;
}

/* -- Story card -- */
.profile-story {
  background: #f5f7fa;
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 56px;
}

.profile-story-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 20px;
}

.profile-story p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
  margin-bottom: 12px;
}

.profile-story p:last-child {
  margin-bottom: 0;
}

/* -- RE/MAX bar -- */
.remax-bar {
  background: #1a2744;
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}

.remax-bar p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* ===== Service ===== */
#service {
  background: #f5f7fa;
  padding: 80px 0;
}

.section-title--lined {
  position: relative;
  padding-bottom: 20px;
}

.section-title--lined::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #c9a84c;
  border-radius: 2px;
}

.section-lead {
  text-align: center;
  color: #666;
  margin-top: -32px;
  margin-bottom: 48px;
  line-height: 2;
}

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

.service-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* 下段2枚を中央寄せ */
.service-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.service-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a2744;
}

.service-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

/* ===== Why ===== */
#why {
  background: #fff;
  padding: 80px 0;
}

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

.why-card {
  background: #fff;
  border-left: 4px solid #1a2744;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.why-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a2744;
}

.why-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

/* ===== Flow ===== */
#flow {
  background: #f5f7fa;
  padding: 80px 0;
}

.flow-list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 36px;
}

.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: #d9e0ec;
}

.flow-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a2744;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.flow-body {
  padding-top: 6px;
}

.flow-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}

.flow-step-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

/* ===== Testimonial ===== */
#testimonial {
  background: #f0f4ff;
  padding: 80px 0;
}

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

.testimonial-card {
  position: relative;
  background: #fff;
  padding: 40px 32px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.testimonial-deco {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #1a2744;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-attr {
  font-size: 0.85rem;
  color: #999;
}

/* ===== FAQ ===== */
#faq {
  background: #f5f7fa;
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #fafbff;
}

.faq-label {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-label--q {
  color: #1a2744;
}

.faq-label--a {
  color: #999;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #1a2744;
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  gap: 12px;
  align-items: flex-start;
}

.faq-item.is-open .faq-answer {
  display: flex;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

/* ===== Contact ===== */
#contact {
  background: #1a2744;
  padding: 80px 0;
  color: #fff;
}

.section-title--light {
  color: #fff;
}

.contact-lead {
  text-align: center;
  line-height: 2.2;
  opacity: 0.85;
  margin-bottom: 16px;
}

.contact-note {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 40px;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* -- LINE consultation -- */
.contact-line {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: center;
}

.contact-line-or {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.contact-line-text {
  font-size: 0.92rem;
  opacity: 0.88;
  margin-bottom: 16px;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06c755;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-line:hover {
  background: #05b14b;
  transform: translateY(-2px);
}

.btn-line-icon {
  font-size: 0.72rem;
  font-weight: 700;
  background: #fff;
  color: #06c755;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}

/* -- Floating LINE button -- */
.line-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 64px;
  height: 64px;
  background: #06c755;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.line-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.line-float-icon {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.line-float-text {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

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

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.badge-required {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #c9a84c;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a2744;
}

.form-group textarea {
  resize: vertical;
}

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

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: #1a2744;
  width: 18px;
  height: 18px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: #c9a84c;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background: #b0912e;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: #f0f9f0;
  color: #2e7d32;
  font-weight: 700;
  border-radius: 8px;
}

.form-success.is-show {
  display: block;
}

/* ===== Footer ===== */
.site-footer {
  background: #111827;
  color: #999;
  text-align: center;
  padding: 48px 20px;
  line-height: 1.8;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 6px;
}

.footer-company {
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.footer-license {
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.footer-contact {
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.footer-tel,
.footer-email {
  color: #7b9ad6;
  transition: color 0.2s;
}

.footer-tel:hover,
.footer-email:hover {
  color: #a8c4f0;
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #888;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-btn svg {
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn--x:hover {
  background: #ffffff;
  color: #111827;
}

.social-btn--ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  border-color: transparent;
}

.social-btn--line:hover {
  background: #06c755;
  color: #ffffff;
  border-color: transparent;
}

.footer-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #7b9ad6;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a8c4f0;
}

.footer-copy {
  font-size: 0.78rem;
}

/* ============================
   Mobile  (max-width: 768px)
   ============================ */
@media (max-width: 768px) {

  /* -- Header -- */
  .hamburger {
    display: flex;
  }

  .header-logo {
    font-size: 0.8rem;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
  }

  /* -- Hero -- */
  #hero {
    padding: 96px 20px 48px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-photo {
    flex: none;
    width: 100%;
    max-width: 360px;
    order: -1;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-quote {
    font-size: 0.95rem;
    padding-left: 16px;
    margin-bottom: 28px;
  }

  .hero-quote br {
    display: none;
  }

  .hero-name {
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }

  .btn-cta {
    padding: 16px 36px;
    font-size: 1rem;
    width: 100%;
  }

  .btn-sub {
    padding: 14px 32px;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-badges {
    font-size: 0.72rem;
    line-height: 1.8;
  }

  /* -- Common -- */
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  .section-lead {
    font-size: 0.9rem;
    margin-top: -20px;
    margin-bottom: 32px;
  }

  /* -- Problem -- */
  #problem {
    padding: 56px 0;
  }

  .problem-card {
    padding: 16px 16px;
    gap: 14px;
  }

  .problem-check {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .problem-card p {
    font-size: 0.9rem;
  }

  /* -- Profile -- */
  #profile {
    padding: 56px 0 0;
  }

  .profile-top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }

  .profile-left {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .profile-info li {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .profile-info-label {
    min-width: 80px;
  }

  .book-card {
    padding: 20px 16px;
  }

  .book-inner {
    gap: 16px;
  }

  .book-img {
    height: 120px;
  }

  .book-title {
    font-size: 0.95rem;
  }

  .book-desc {
    font-size: 0.82rem;
  }

  .profile-story {
    padding: 28px 20px;
    margin-bottom: 40px;
  }

  .profile-story-title {
    font-size: 1.05rem;
  }

  .profile-story p {
    font-size: 0.9rem;
  }

  .remax-bar p {
    font-size: 0.82rem;
  }

  /* -- Service -- */
  #service {
    padding: 56px 0;
  }

  .section-lead br {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid .service-card:nth-child(4),
  .service-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    font-size: 2.4rem;
  }

  .service-card-title {
    font-size: 1.05rem;
  }

  .service-card-text {
    font-size: 0.9rem;
  }

  /* -- Why -- */
  #why {
    padding: 56px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .why-card-title {
    font-size: 1.05rem;
  }

  .why-card-text {
    font-size: 0.9rem;
  }

  /* -- Stats -- */
  #stats {
    padding: 40px 0;
  }

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

  .stat-item {
    padding: 0 8px;
  }

  .stat-item + .stat-item {
    border-left: none;
  }

  .stat-num {
    font-size: 2.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* -- Flow -- */
  #flow {
    padding: 56px 0;
  }

  .flow-step {
    gap: 16px;
    padding-bottom: 28px;
  }

  .flow-num {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .flow-step:not(:last-child)::before {
    left: 21px;
    top: 46px;
  }

  .flow-step-title {
    font-size: 1.02rem;
  }

  .flow-step-text {
    font-size: 0.9rem;
  }

  /* -- Testimonial -- */
  #testimonial {
    padding: 56px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 20px 24px;
  }

  .testimonial-deco {
    font-size: 2.8rem;
  }

  .testimonial-body {
    font-size: 0.9rem;
  }

  /* -- FAQ -- */
  #faq {
    padding: 56px 0;
  }

  .faq-question {
    padding: 16px 16px;
    gap: 10px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px 20px;
    gap: 10px;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  /* -- Contact -- */
  #contact {
    padding: 56px 0;
  }

  .contact-lead {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .contact-card {
    padding: 32px 20px;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 16px;
  }

  .line-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  /* -- Footer -- */
  .site-footer {
    padding: 36px 16px;
  }

  .footer-contact {
    font-size: 0.8rem;
  }

  .footer-sep {
    display: none;
  }

  .footer-tel,
  .footer-email {
    display: block;
  }
}

/* ============================
   Small phones  (max-width: 380px)
   iPhone SE = 375px
   ============================ */
@media (max-width: 380px) {

  .header-logo {
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-quote {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .problem-card {
    padding: 14px 12px;
    gap: 12px;
  }

  .problem-check {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .problem-card p {
    font-size: 0.85rem;
  }

  .profile-left {
    max-width: 220px;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}
