/* ===========================
   Variables
=========================== */
:root {
  --navy: #0b2a4a;
  --navy-deep: #071b31;
  --blue: #1e88c7;
  --sky: #4fb3e8;
  --gold: #c9a227;
  --gold-light: #f4e2a1;
  --bg: #ffffff;
  --bg-tint: #f4f7fa;
  --text: #223141;
  --text-soft: #5a6b7b;
  --border: #e3e9ef;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(11, 42, 74, 0.07);
  --shadow-md: 0 6px 20px rgba(11, 42, 74, 0.10);
  --container: 1120px;
  --serif: "Shippori Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.9;
  font-size: 16px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.hl {
  background: linear-gradient(180deg, transparent 60%, var(--gold-light) 60%);
  padding: 0 2px;
}

.hl-black {
  background: linear-gradient(180deg, transparent 60%, var(--gold-light) 60%);
  color: #000;
  padding: 0 2px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  letter-spacing: 0.06em;
}

.btn--primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--gold-light);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ===========================
   Header / Nav
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 42, 74, 0.92);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: rgba(7, 27, 49, 0.97);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
}

.brand:hover {
  opacity: 0.8;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e5c15a);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.brand__text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu li a:not(.nav-cta):hover {
  color: #fff;
}

.nav-menu li a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu li a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-deep) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--gold-light) !important;
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(7, 27, 49, 0.55) 15%, rgba(11, 42, 74, 0.32) 55%, rgba(11, 42, 74, 0.15) 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 40px 0;
  color: #fff;
}

.hero__content {
  max-width: 600px;
  padding-bottom: 110px;
}

.hero__figure {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: calc(var(--container) + 160px);
  margin: 0 auto;
  padding: 0 0 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__figure-img {
  height: 82%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  filter: drop-shadow(0 24px 36px rgba(7, 27, 49, 0.35));
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid rgba(244, 226, 161, 0.5);
  border-radius: 2px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  margin-left: -4px;
  max-width: none;
  text-shadow: 0 2px 18px rgba(7, 27, 49, 0.45);
}

.hero__title span {
  color: var(--gold-light);
}

.hero__lead {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 14px rgba(7, 27, 49, 0.4);
  max-width: 640px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 4;
}

.hero__wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

.hero__wave path {
  fill: var(--bg);
}

/* ===========================
   Sections / Headings
=========================== */
.section {
  padding: 88px 0;
}

.section--tint {
  background: var(--bg-tint);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 5px 16px;
  margin-bottom: 14px;
}

.eyebrow--light {
  color: var(--gold-light);
}

.section-head h2,
.ribbon h2 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}

.section-head h2::after {
  content: "\25C6";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0;
}

.section-head h2::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 1px;
  background: var(--gold);
}

/* ===========================
   Alert card (school warning)
=========================== */
.alert-card {
  display: flex;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid #a63333;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.alert-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: rgba(166, 51, 51, 0.08);
  color: #a63333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-card__icon svg {
  width: 26px;
  height: 26px;
}

.alert-card__body h3 {
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--navy);
}

.alert-card__conclusion {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}

/* ===========================
   Center card
=========================== */
.center-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.center-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--navy);
}

.center-card p {
  text-align: left;
}

/* ===========================
   About flex (certificate)
=========================== */
.about-flex {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.about-flex__text {
  flex: 1 1 440px;
  text-align: left;
}

.about-flex__text h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--navy);
  text-align: left;
}

.about-flex__image {
  flex: 1 1 380px;
}

.about-flex__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.stars svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

/* ===========================
   Ribbon
=========================== */
.ribbon {
  position: relative;
  background: var(--bg-tint);
  text-align: center;
  padding: 40px 0 24px;
}

.ribbon + .section {
  padding-top: 40px;
}

.ribbon h2 {
  color: var(--navy);
  padding-bottom: 22px;
}

.ribbon h2::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 1px;
  background: var(--gold);
}

.ribbon h2::after {
  content: "\25C6";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0;
  display: block;
}

/* ===========================
   Checklist grid
=========================== */
.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.check-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.check-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(30, 136, 199, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-card__icon svg {
  width: 22px;
  height: 22px;
}

/* ===========================
   Steps (application info)
=========================== */
.steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.step-card__num {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}

.step-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
}

/* ===========================
   Guarantee section
=========================== */
.guarantee {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.guarantee__img {
  position: relative;
  flex: 0 0 230px;
  max-width: 230px;
  aspect-ratio: 1 / 1;
}

.guarantee__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  outline: 1px solid var(--gold);
  outline-offset: 4px;
  transform: scale(1.25) translateX(-10%);
}

.guarantee__badge {
  position: absolute;
  bottom: 4px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.guarantee__badge svg {
  width: 23px;
  height: 23px;
}

.guarantee__text {
  flex: 1 1 320px;
  font-size: 19px;
  color: var(--navy);
}

.guarantee__text strong {
  color: var(--gold);
}

/* ===========================
   Article with image
=========================== */
.article-img {
  max-width: 1040px;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.article-img:last-child {
  margin-bottom: 0;
}

.article-img--right {
  flex-direction: row-reverse;
}

.article-img__img {
  flex: 1 1 420px;
}

.article-img__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-img__text {
  flex: 1 1 420px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(30, 136, 199, 0.1);
  border-radius: 2px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.article-img__text h3 {
  font-size: 25px;
  margin-bottom: 16px;
  color: var(--navy);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-top: 8px;
}

.price-tag span {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-soft);
}

/* ===========================
   Contact banner
=========================== */
.contact-banner {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 72px 0;
}

.contact-banner .eyebrow--light {
  color: var(--gold);
}

.contact-banner h2 {
  color: var(--navy);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 6px 0 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}

.contact-banner h2::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 1px;
  background: var(--gold);
}

.contact-banner h2::after {
  content: "\25C6";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0;
}

.contact-banner__mail {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 20px 36px;
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-banner__mail:hover {
  background: var(--bg-tint);
  border-color: var(--navy);
}

.contact-banner__mail svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ===========================
   Bottom image
=========================== */
.bottom-image {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.bottom-image img {
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ===========================
   Access
=========================== */
.access {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
}

.access__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 2px;
  background: rgba(30, 136, 199, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.access__icon svg {
  width: 26px;
  height: 26px;
}

.access__org {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.access__text a {
  color: var(--blue);
  text-decoration: none;
}

.access__text a:hover {
  text-decoration: underline;
}

/* ===========================
   Form
=========================== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}

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

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
}

.required {
  background: #a63333;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-line {
  margin-top: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.checkbox-line label {
  display: inline;
  font-weight: 400;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit button {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  padding: 16px 64px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.form-submit button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--gold-light);
}

/* ===========================
   Footer
=========================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.brand--footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   To top button
=========================== */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 150;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--blue);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* ===========================
   Reveal on scroll
=========================== */
.js-reveal-init [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal-init [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-reveal-init [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 16px;
  }

  .brand {
    max-width: 60%;
  }

  .brand__text {
    font-size: 12px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
    background-size: auto;
    background-position: top center;
    background-color: transparent;
  }

  .hero__pattern {
    display: none;
  }

  .hero__inner {
    padding: 100px 24px 0;
    text-align: center;
  }

  .hero__content {
    max-width: none;
    background: rgba(7, 27, 49, 0.55);
    border-radius: 8px;
    padding: 20px 20px 32px;
    margin: 0 -8px;
  }

  .hero__figure {
    display: none;
  }

  .hero__wave {
    display: none;
  }

  .hero + .section {
    padding-top: 0;
  }

  .hero__title {
    font-size: 34px;
    margin-left: 0;
  }

  .hero__lead {
    font-size: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .ribbon h2 {
    font-size: 24px;
  }

  .alert-card {
    flex-direction: column;
    padding: 28px;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .article-img,
  .article-img--right {
    flex-direction: column;
    gap: 0;
  }

  .article-img__img,
  .article-img__text {
    flex: 0 0 auto;
  }

  .article-img__img img {
    box-shadow: none;
  }

  .about-flex {
    flex-direction: column;
    gap: 0;
  }

  .about-flex__text,
  .about-flex__image {
    flex: 0 0 auto;
  }

  .about-flex__image img {
    box-shadow: none;
  }

  .guarantee {
    flex-direction: column;
    text-align: center;
  }

  .guarantee__img,
  .guarantee__text {
    flex: 0 0 auto;
  }

  .contact-form {
    padding: 28px 22px;
  }
}
