/* ピカピカクリーン — mild-beach-953.css */
:root {
  --primary: #15351b;
  --secondary: #e1eb00;
  --accent: #cd91af;
  --text: #15351b;
  --white: #ffffff;
  --bg: #ffffff;
  --light-bg: #f8f9f5;
  --footer-bg: #15351b;
  --footer-text: #fff;
  --footer-link: rgba(255,255,255,0.72);
  --border-radius: 12px;
  --transition: all 0.3s ease-in-out;
  --shadow: 0 4px 24px rgba(21,53,27,0.10);
  --shadow-hover: 0 8px 32px rgba(21,53,27,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.82; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: transparent;
  color: var(--primary);
  opacity: 1;
}

.btn--secondary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.btn--secondary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  opacity: 1;
}

.section { padding: 80px 0; }
.section--light { background: var(--light-bg); }
.section--dark { background: var(--primary); color: var(--white); }
.section--yellow { background: var(--secondary); color: var(--primary); }

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
  color: #444;
}

.section--dark .section-desc,
.section--yellow .section-desc { color: inherit; opacity: 0.85; }

/* ===== SIMPLE BANNER ===== */
.simple-banner {
  background: var(--secondary);
  color: var(--primary);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 99999;
}
.simple-banner a { color: var(--primary); text-decoration: underline; }
.simple-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(21,53,27,0.08);
  transition: var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo svg { width: 40px; height: 40px; }

.site-logo__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.site-logo__text span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu a:hover { opacity: 1; background: var(--light-bg); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(21,53,27,0.12);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; border-radius: 8px; }
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  max-height: 800px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 24px;
  max-width: 600px;
  margin-left: auto;
}

.hero__label {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__title span { color: var(--accent); }

.hero__desc {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__image {
  background: var(--light-bg);
  overflow: hidden;
  position: relative;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .hero__content {
    padding: 48px 24px 40px;
    max-width: 100%;
    margin-left: 0;
  }
  .hero__image { height: 320px; }
}

/* ===== STATS ===== */
.stats {
  background: var(--primary);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item { color: var(--white); }

.stats__number {
  font-size: 44px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: 24px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 22px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card__link:hover { gap: 10px; opacity: 1; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}


/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 16px;
}

.why-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.why-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}

.why-item__text {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
}


/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--secondary);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}


/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--secondary);
  transform: scale(1.03);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card:hover { box-shadow: var(--shadow-hover); }

.pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 16px;
  font-weight: 500;
  color: #888;
}

.pricing-card__desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.pricing-card__feature i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: scale(1); }
}


/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-hover); }

.testimonial-card__stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card__location {
  font-size: 12px;
  color: #999;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}


/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--secondary);
  padding: 72px 24px;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-banner__desc {
  font-size: 17px;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ===== CONTACT SECTION ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}


/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo-svg { width: 44px; height: 44px; margin-bottom: 14px; }

.footer__brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 14px;
  color: var(--footer-link);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.footer__social a:hover {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}

.footer__col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--footer-link);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover { color: var(--secondary); opacity: 1; padding-left: 4px; }

.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer__contact-item i {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 14px;
  color: var(--footer-link);
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copyright {
  font-size: 13px;
  color: var(--footer-link);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: var(--footer-link);
  text-decoration: none;
  transition: var(--transition);
}

.footer__bottom-links a:hover { color: var(--secondary); opacity: 1; }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }
}


/* ===== COOKIE BANNER ===== */
.cmplz-cookiebanner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  z-index: 99999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cmplz-cookiebanner.cmplz-show { display: block; }

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cmplz-cookiebanner__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmplz-cookiebanner__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}

.cmplz-cookiebanner__desc a { color: var(--primary); text-decoration: underline; }

.cmplz-cookiebanner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cmplz-accept {
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cmplz-accept:hover { opacity: 0.85; }

.cmplz-decline {
  padding: 10px 22px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid #ddd;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cmplz-decline:hover { border-color: var(--primary); }

@media (max-width: 600px) {
  .cmplz-cookiebanner { left: 12px; right: 12px; bottom: 12px; }
  .cmplz-cookiebanner__buttons { flex-direction: column; }
  .cmplz-accept, .cmplz-decline { text-align: center; width: 100%; }
}


/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 80px 24px 64px;
  text-align: center;
  color: var(--white);
}

.page-hero__label { color: var(--secondary); margin-bottom: 10px; }

.page-hero__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

.page-hero__breadcrumb a { color: var(--secondary); text-decoration: none; }
.page-hero__breadcrumb i { font-size: 10px; }


/* ===== TWO-COL LAYOUT (About, Service pages) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.two-col__content { display: flex; flex-direction: column; gap: 16px; }

.two-col__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
}

.two-col__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .two-col__image img { height: 280px; }
}


/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content .last-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 36px;
}

.legal-content a { color: var(--primary); text-decoration: underline; }


/* ===== SERVICE DETAILS PAGE ===== */
.service-detail__header {
  background: var(--light-bg);
  padding: 60px 0;
}

.service-detail__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-detail__icon-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.service-detail__icon-item i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-detail__icon-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .service-detail__icons { grid-template-columns: repeat(2, 1fr); }
}


/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }

.cmplz-hidden { display: none !important; }
