.btn-contact-sm {
  background: var(--yellow-cta);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-contact-sm:hover {
  background: var(--yellow-accent);
  transform: translateY(-1px);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid;
  transition: all 0.2s;
  align-self: flex-start;
}

.split-card.personal .btn-card {
  border-color: var(--sky-accent);
  color: var(--sky-accent);
}

.split-card.personal .btn-card:hover {
  background: var(--sky-accent);
  color: white;
}

.split-card.corporate .btn-card {
  border-color: var(--navy);
  color: var(--navy);
}

.split-card.corporate .btn-card:hover {
  background: var(--navy);
  color: white;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-accent);
  align-self: flex-start;
  transition: gap 0.2s;
}

.btn-more:hover {
  gap: 8px;
}

.btn-tel-lg,
.btn-form-lg,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  cursor: pointer;
}

.btn-tel-lg {
  padding: 16px 36px;
  font-size: 16px;
  background: var(--yellow-cta);
  color: var(--navy);
  transition: transform 0.2s, background 0.2s;
}

.btn-tel-lg:hover {
  background: var(--yellow-accent);
  transform: translateY(-2px);
}

.btn-form-lg {
  padding: 16px 36px;
  font-size: 16px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s, background 0.2s;
}

.btn-form-lg:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  padding: 13px 28px;
  font-size: 14px;
  background: var(--sky-accent);
  color: white;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
}

.btn-outline {
  padding: 13px 28px;
  font-size: 14px;
  background: transparent;
  color: var(--sky-accent);
  border: 2px solid var(--sky-accent);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--sky-accent);
  color: white;
}

.btn-placeholder {
  cursor: default;
  pointer-events: none;
}

.btn-placeholder:hover {
  background: transparent;
  color: var(--sky-accent);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header.align-left {
  text-align: left;
  margin-bottom: 20px;
}

.section-header .label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.section-header p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-sub);
}

.split-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(35, 72, 90, 0.14);
}

.split-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.split-card-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.split-card.personal .split-card-label {
  background: var(--sky-light);
  color: var(--sky-accent);
}

.split-card.corporate .split-card-label {
  background: rgba(35, 72, 90, 0.1);
  color: var(--navy);
}

.split-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.split-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
  flex: 1;
}

.worry-card {
  border-radius: var(--radius-card);
  padding: 36px 36px 40px;
}

.worry-card.personal {
  background: rgba(221, 245, 251, 0.45);
  border: 1.5px solid var(--sky-light);
}

.worry-card.corporate {
  background: rgba(35, 72, 90, 0.05);
  border: 1.5px solid rgba(35, 72, 90, 0.12);
}

.worry-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.worry-card.personal h3 {
  color: var(--sky-accent);
}

.worry-card.corporate h3 {
  color: var(--navy);
}

.worry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.worry-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}

.worry-list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--sky-mid);
}

.worry-card.corporate .worry-list li::before {
  background-color: var(--navy);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-card-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 12px 0;
}

.service-tag {
  font-size: 11px;
  color: var(--sky-accent);
  background: var(--sky-pale);
  border-radius: 10px;
  padding: 3px 9px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-top: 3px solid var(--sky-mid);
}

.reason-icon {
  width: 52px;
  height: 52px;
  background: var(--sky-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.reason-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

.allsvc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}

.allsvc-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--sky-light);
}

.allsvc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.allsvc-tag {
  font-size: 12px;
  color: var(--text);
  background: var(--sky-pale);
  border-radius: 6px;
  padding: 4px 10px;
}

.case-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.before-after {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 10px;
  color: white;
}

.ba-label.before {
  left: 8px;
  background: rgba(0, 0, 0, 0.45);
}

.ba-label.after {
  left: calc(50% + 8px);
  background: var(--sky-accent);
}

.case-card-single-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 8px;
}

.case-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.case-card-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
  list-style: none;
  user-select: none;
}

.faq-q:hover {
  color: var(--sky-accent);
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-q-icon {
  background: var(--sky-accent);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  padding: 0 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .btn-contact-sm {
    display: none;
  }
}