/* ========================================
   RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    Arial,
    sans-serif;

  color: #15315f;
  background: #ffffff;
  line-height: 1.7;
}

img {
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
}


/* ========================================
   HEADER
======================================== */

.header {
  width: 100%;
  min-height: 64px;

  display: flex;
  align-items: center;

  padding: 7px 4%;

  background: #ffffff;

  border-bottom: 1px solid #e7edf4;

  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(20, 55, 90, 0.04);
}


/* ========================================
   LOGO
======================================== */

.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  display: block;

  width: 225px;
  max-width: 225px;
  height: auto;

  object-fit: contain;
}


/* ========================================
   NAVIGATION
======================================== */

.main-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 25px;
}

.main-nav a {
  position: relative;

  color: #15315f;

  text-decoration: none;

  font-size: 12px;
  font-weight: 800;

  white-space: nowrap;

  transition: 0.2s;
}

.main-nav a:hover {
  color: #1689e4;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: #1689e4;

  transition: 0.2s;
}

.main-nav a:hover::after {
  width: 100%;
}


/* ========================================
   FREE CONSULTATION BUTTON
======================================== */

.header-contact {
  margin-left: 24px;

  padding: 10px 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    #1689e4,
    #0874d1
  );

  color: #ffffff;

  border-radius: 30px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  white-space: nowrap;

  box-shadow: 0 5px 15px rgba(22, 137, 228, 0.18);

  transition: 0.2s;
}

.header-contact:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}


/* ========================================
   HERO / BANNER
======================================== */

.hero {
  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background: #f5fbff;

  line-height: 0;
}

.hero picture {
  display: block;

  width: 100%;
  max-width: 100%;
}

.hero img {
  display: block;

  width: 100%;
  max-width: 100%;

  height: auto;

  margin: 0 auto;

  object-fit: contain;
}


/* ========================================
   COMMON SECTIONS
======================================== */

.service,
.reason,
.price-section,
.works,
.flow,
.contact {
  width: 100%;

  padding: 65px 20px;

  text-align: center;
}


/* SMALL TITLE */

.section-small {
  margin-bottom: 7px;

  color: #1689e4;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 5px;
}


/* SECTION TITLE */

.service h2,
.reason h2,
.price-section h2,
.works h2,
.flow h2,
.contact h2 {
  margin-bottom: 15px;

  color: #102f63;

  font-size: 28px;
  line-height: 1.4;
}


/* DESCRIPTION */

.section-description {
  max-width: 680px;

  margin: 0 auto 32px;

  color: #52677f;

  font-size: 14px;
  line-height: 1.9;
}


/* ========================================
   SERVICE
======================================== */

.service {
  background: #ffffff;
}

.service-list {
  width: 100%;
  max-width: 1050px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;

  gap: 18px;
}

.service-box {
  width: 100%;

  padding: 24px 20px;

  display: flex;
  align-items: center;

  gap: 17px;

  text-align: left;

  background: #ffffff;

  border: 1px solid #dcebf7;
  border-radius: 17px;

  box-shadow: 0 7px 24px rgba(25, 100, 170, 0.07);
}

.service-icon {
  width: 64px;
  height: 64px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eff8ff;

  color: #1689e4;

  font-size: 29px;
  font-weight: 900;
}

.service-box h3 {
  margin-bottom: 5px;

  color: #087fdf;

  font-size: 19px;
}

.service-box p {
  color: #4b627d;

  font-size: 13px;
  line-height: 1.75;
}


/* ========================================
   POINT / REASON
======================================== */

.reason {
  background: #f3faff;
}

.reason-list {
  width: 100%;
  max-width: 1050px;

  margin: 30px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.reason-box {
  padding: 23px 13px;

  background: #ffffff;

  border: 1px solid #e1edf7;
  border-radius: 15px;

  box-shadow: 0 4px 15px rgba(25, 90, 150, 0.04);
}

.reason-box span {
  display: block;

  margin-bottom: 7px;

  color: #1689e4;

  font-size: 30px;
  font-weight: 900;
}

.reason-box h3 {
  margin-bottom: 6px;

  color: #12366b;

  font-size: 16px;
}

.reason-box p {
  color: #536a84;

  font-size: 11px;
  line-height: 1.75;
}


/* ========================================
   WHY AFFORDABLE
======================================== */

.low-price-box {
  width: 100%;
  max-width: 760px;

  margin: 40px auto 0;

  padding: 30px 24px;

  background: #ffffff;

  border: 1px solid #cfe5f7;
  border-radius: 20px;

  box-shadow: 0 8px 25px rgba(20, 90, 160, 0.07);

  text-align: left;
}

.low-price-small {
  margin-bottom: 8px;

  color: #1689e4;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 3px;

  text-align: center;
}

.low-price-box h3 {
  margin-bottom: 18px;

  color: #12366b;

  font-size: 21px;
  line-height: 1.5;

  text-align: center;
}

.low-price-box p {
  margin-bottom: 13px;

  color: #4f657d;

  font-size: 13px;
  line-height: 1.9;
}

.low-price-box .low-price-highlight {
  margin-top: 18px;
  margin-bottom: 0;

  padding: 14px 15px;

  background: #eef8ff;

  border-radius: 12px;

  color: #087fdf;

  font-size: 14px;
  font-weight: 900;

  text-align: center;
}


/* ========================================
   PRICE
======================================== */

.price-section {
  background: #ffffff;
}

.price-intro {
  max-width: 680px;

  margin: 0 auto 35px;

  color: #52677f;

  font-size: 14px;
  line-height: 1.9;
}

.price-intro strong {
  display: inline-block;

  margin-top: 10px;

  color: #087fdf;

  font-weight: 900;
}


/* ========================================
   PLAN LIST
======================================== */

.plan-list {
  width: 100%;
  max-width: 950px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;

  gap: 28px;
}


/* ========================================
   PLAN CARD
======================================== */

.plan-card {
  position: relative;

  width: 100%;

  padding: 34px 22px;

  background: #ffffff;

  border: 1px solid #d7e7f3;
  border-radius: 22px;

  box-shadow: 0 8px 26px rgba(20, 80, 140, 0.08);
}

.plan-card.featured {
  border: 2px solid #1689e4;
}

.popular {
  position: absolute;

  top: -15px;
  left: 50%;

  transform: translateX(-50%);

  padding: 5px 19px;

  background: #1689e4;
  color: #ffffff;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 800;

  white-space: nowrap;
}

.plan-label {
  margin-bottom: 7px;

  color: #1689e4;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 4px;
}

.plan-card h3 {
  margin-bottom: 15px;

  color: #12366b;

  font-size: 25px;
}

.plan-price {
  margin-bottom: 22px;

  color: #3485e3;

  font-size: 45px;
  font-weight: 900;

  line-height: 1.1;
}

.plan-price span {
  margin-left: 3px;

  font-size: 19px;
}

.page-count {
  display: inline-block;

  margin: 0 auto 25px;

  padding: 9px 18px;

  background: #eaf6ff;
  color: #1689e4;

  border-radius: 30px;

  font-size: 13px;
  font-weight: 800;

  line-height: 1.6;
}

.plan-content-title {
  max-width: 440px;

  margin: 0 auto 7px;

  color: #12366b;

  text-align: left;

  font-size: 15px;
  font-weight: 800;
}

.plan-card ul {
  max-width: 440px;

  margin: 0 auto;

  padding: 0;

  list-style: none;

  text-align: left;
}

.plan-card li {
  position: relative;

  padding: 13px 4px 13px 30px;

  border-bottom: 1px solid #e8eff5;

  color: #425a75;

  font-size: 14px;
  line-height: 1.7;
}

.plan-card li::before {
  content: "✓";

  position: absolute;

  left: 5px;
  top: 13px;

  color: #3485e3;

  font-weight: 900;
}

.payment-note {
  max-width: 440px;

  margin: 10px auto 0;

  color: #718197;

  font-size: 11px;
  line-height: 1.7;

  text-align: left;
}

.recommended {
  margin: 25px 0 17px;

  color: #536a84;

  font-size: 13px;
  font-weight: 700;
}


/* ========================================
   PLAN BUTTON
======================================== */

.plan-button {
  display: block;

  width: 100%;

  padding: 15px 18px;

  background: linear-gradient(
    90deg,
    #3485e3,
    #1689e4
  );

  color: #ffffff;

  border-radius: 40px;

  text-decoration: none;
  text-align: center;

  font-size: 16px;
  font-weight: 900;

  box-shadow: 0 6px 18px rgba(22, 137, 228, 0.15);

  transition: 0.2s;
}

.plan-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}


/* ========================================
   EXTRA PAGE
======================================== */

.extra-price {
  width: 100%;
  max-width: 520px;

  margin: 30px auto 0;

  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  background: #f4faff;

  border: 1px solid #dceaf6;
  border-radius: 13px;
}

.extra-price strong {
  color: #12366b;
}

.extra-price span {
  color: #087fdf;

  font-weight: 900;
}

.price-note {
  max-width: 680px;

  margin: 18px auto 0;

  color: #718197;

  font-size: 11px;
  line-height: 1.9;
}


/* ========================================
   WORKS
======================================== */

.works {
  background: #f4faff;
}

.works p {
  color: #52677f;

  font-size: 14px;
}


/* ========================================
   FLOW
======================================== */

.flow {
  background: #ffffff;
}

.flow-list {
  width: 100%;
  max-width: 1050px;

  margin: 30px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.flow-box {
  padding: 20px 10px;

  border: 1px solid #dceaf6;
  border-radius: 14px;

  background: #ffffff;

  box-shadow: 0 4px 15px rgba(25, 90, 150, 0.04);
}

.flow-box span {
  display: block;

  margin-bottom: 8px;

  color: #1689e4;

  font-size: 13px;
  font-weight: 900;
}

.flow-box h3 {
  margin-bottom: 5px;

  color: #12366b;

  font-size: 15px;
}

.flow-box p {
  color: #536a84;

  font-size: 11px;
  line-height: 1.7;
}


/* ========================================
   CONTACT
======================================== */

.contact {
  background: #f4faff;
}

.contact-intro {
  max-width: 560px;

  margin: 0 auto 28px;

  color: #4c617a;

  font-size: 14px;
  line-height: 1.8;
}


/* ========================================
   CONTACT FORM
======================================== */

.contact-form {
  width: 100%;
  max-width: 570px;

  margin: 0 auto;

  padding: 28px 20px;

  background: #ffffff;

  border: 1px solid #dceaf6;
  border-radius: 20px;

  box-shadow: 0 8px 25px rgba(20, 80, 140, 0.06);

  text-align: left;
}

.contact-form label {
  display: block;

  margin: 18px 0 7px;

  color: #15315f;

  font-size: 13px;
  font-weight: 800;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;

  width: 100%;

  padding: 14px;

  background: #ffffff;

  border: 1px solid #d7e2ec;
  border-radius: 10px;

  color: #263e5d;

  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 145px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: #1689e4;

  box-shadow: 0 0 0 3px rgba(22, 137, 228, 0.08);
}


/* ========================================
   ESTIMATE
======================================== */

.estimate-box {
  width: 100%;

  margin: 23px 0 5px;

  padding: 17px;

  background: #eef8ff;

  border: 1px solid #d8ebfa;
  border-radius: 13px;

  text-align: center;
}

.estimate-box span {
  display: block;

  margin-bottom: 3px;

  color: #536a84;

  font-size: 12px;
}

.estimate-box strong {
  display: block;

  color: #087fdf;

  font-size: 23px;
  font-weight: 900;
}


/* ========================================
   CONTACT BUTTON
======================================== */

.contact-button {
  display: block;

  width: 100%;

  margin-top: 25px;

  padding: 16px 20px;

  border: none;
  border-radius: 40px;

  background: linear-gradient(
    90deg,
    #1689e4,
    #0874d1
  );

  color: #ffffff;

  text-decoration: none;
  text-align: center;

  font-size: 16px;
  font-weight: 900;

  cursor: pointer;

  box-shadow: 0 7px 20px rgba(22, 137, 228, 0.18);

  transition: 0.2s;
}

.contact-button:hover {
  opacity: 0.9;
}


/* ========================================
   FORM NOTE
======================================== */

.form-note {
  min-height: 20px;

  margin-top: 12px;

  text-align: center;

  color: #718197;

  font-size: 11px;
  line-height: 1.6;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
  width: 100%;

  padding: 48px 20px 28px;

  background: #0d2d5a;
  color: #ffffff;
}

.footer-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}


/* ========================================
   FOOTER LOGO
======================================== */

.footer-brand {
  text-align: center;
}

.footer-brand a {
  display: inline-block;
  line-height: 0;
}

.footer-brand img {
  display: block;

  width: 220px;
  max-width: 220px;
  height: auto;

  margin: 0 auto 12px;

  padding: 8px 12px;

  background: #ffffff;

  border-radius: 10px;
}

.footer-brand p {
  color: #d7e7f7;

  font-size: 12px;
  line-height: 1.7;
}


/* ========================================
   FOOTER MENU
======================================== */

.footer-menu {
  width: 100%;

  margin: 35px auto 0;

  display: grid;
  grid-template-columns: 1fr;

  gap: 30px;

  text-align: center;
}

.footer-column h3 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 900;
}

.footer-column a {
  display: block;

  margin: 8px 0;

  color: #d7e7f7;

  text-decoration: none;

  font-size: 12px;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* ========================================
   ADMIN LOGIN
======================================== */

.footer-customer {
  max-width: 450px;

  margin: 35px auto 0;

  padding: 18px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-customer p {
  margin-bottom: 9px;

  color: #d7e7f7;

  font-size: 11px;
}

.admin-coming-soon {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}

.admin-coming-soon small {
  padding: 2px 6px;

  background: #1689e4;

  border-radius: 10px;

  font-size: 9px;
}


/* ========================================
   COPYRIGHT
======================================== */

.footer-copy {
  margin-top: 24px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  color: #a9bfd6;

  text-align: center;

  font-size: 10px;
}


/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  /* HEADER */

  .header {
    min-height: auto;

    flex-wrap: wrap;

    padding: 6px 14px;
  }


  /* SMALL HORIZONTAL LOGO */

  .logo img {
    width: 165px;
    max-width: 165px;
  }


  /* FREE CONSULTATION */

  .header-contact {
    margin-left: auto;

    padding: 8px 12px;

    font-size: 10px;
  }


  /* MENU SECOND ROW */

  .main-nav {
    order: 3;

    width: 100%;

    margin: 6px 0 0;

    padding: 7px 0 4px;

    display: flex;
    align-items: center;

    gap: 22px;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    border-top: 1px solid #edf2f7;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex-shrink: 0;

    font-size: 11px;
  }

  .main-nav a::after {
    bottom: -4px;
  }


  /* HERO */

  .hero,
  .hero picture,
  .hero img {
    width: 100%;
    max-width: 100%;
  }

  .hero img {
    height: auto;
    object-fit: contain;
  }


  /* SECTIONS */

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding: 55px 20px;
  }


  /* TITLE */

  .service h2,
  .reason h2,
  .price-section h2,
  .works h2,
  .flow h2,
  .contact h2 {
    font-size: 25px;
  }


  /* PRICE */

  .plan-price {
    font-size: 43px;
  }


  /* FOOTER */

  .site-footer {
    padding: 42px 20px 25px;
  }

  .footer-brand img {
    width: 190px;
    max-width: 190px;
  }

}


/* ========================================
   SMALL iPHONE
======================================== */

@media screen and (max-width: 390px) {

  .header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo img {
    width: 145px;
    max-width: 145px;
  }

  .header-contact {
    padding: 7px 10px;

    font-size: 9px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-card {
    padding-left: 17px;
    padding-right: 17px;
  }

  .plan-price {
    font-size: 39px;
  }

  .plan-price span {
    font-size: 17px;
  }

  .extra-price {
    flex-direction: column;

    text-align: center;
  }

}


/* ========================================
   TABLET / DESKTOP
======================================== */

@media screen and (min-width: 769px) {

  /* LOGO */

  .logo img {
    width: 225px;
    max-width: 225px;
  }


  /* SECTIONS */

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding: 78px 7%;
  }


  /* SERVICE */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-box {
    display: block;

    text-align: center;
  }

  .service-icon {
    margin: 0 auto 15px;
  }


  /* POINT */

  .reason-list {
    grid-template-columns: repeat(4, 1fr);
  }


  /* PRICE */

  .plan-list {
    grid-template-columns: repeat(2, 1fr);
  }


  /* FLOW */

  .flow-list {
    grid-template-columns: repeat(4, 1fr);
  }


  /* FOOTER */

  .footer-menu {
    grid-template-columns: repeat(3, 1fr);

    text-align: left;

    gap: 55px;
  }

}


/* ========================================
   LARGE DESKTOP
======================================== */

@media screen and (min-width: 1200px) {

  .header {
    padding-left: 5%;
    padding-right: 5%;
  }

  .logo img {
    width: 245px;
    max-width: 245px;
  }

  .main-nav {
    gap: 30px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-contact {
    padding: 11px 22px;

    font-size: 13px;
  }

}====================================
   FOOTER BRAND
======================================== */

.footer-brand {
  text-align: center;
}

.footer-brand a {
  display: inline-block;
  line-height: 0;
}

.footer-brand img {
  display: block;

  width: 185px;
  max-width: 185px;
  height: auto;

  margin: 0 auto 12px;

  padding: 6px;

  background: #ffffff;

  border-radius: 10px;
}

.footer-brand p {
  color: #d7e7f7;

  font-size: 12px;
  line-height: 1.7;
}


/* ========================================
   FOOTER MENU
======================================== */

.footer-menu {
  width: 100%;

  margin: 35px auto 0;

  display: grid;
  grid-template-columns: 1fr;

  gap: 30px;

  text-align: center;
}

.footer-column h3 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 900;
}

.footer-column a {
  display: block;

  margin: 8px 0;

  color: #d7e7f7;

  text-decoration: none;

  font-size: 12px;
}

.footer-column a:hover {
  color: #ffffff;

  text-decoration: underline;
}


/* ========================================
   CUSTOMER LOGIN
======================================== */

.footer-customer {
  max-width: 450px;

  margin: 35px auto 0;

  padding: 18px;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-customer p {
  margin-bottom: 9px;

  color: #d7e7f7;

  font-size: 11px;
}

.admin-coming-soon {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 9px 15px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 25px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}

.admin-coming-soon small {
  padding: 2px 6px;

  background: #1689e4;

  border-radius: 10px;

  font-size: 9px;
}


/* ========================================
   COPYRIGHT
======================================== */

.footer-copy {
  margin-top: 24px;

  padding-top: 18px;

  border-top: 1px solid rgba(255,255,255,0.15);

  color: #a9bfd6;

  text-align: center;

  font-size: 10px;
}


/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  /* HEADER */

  .header {
    min-height: auto;

    flex-wrap: wrap;

    padding: 8px 12px;
  }

  .logo img {
    width: 150px;
    max-width: 150px;
  }


  /* CONSULTATION BUTTON */

  .header-contact {
    margin-left: auto;

    padding: 8px 12px;

    font-size: 10px;
  }


  /* NAVIGATION */

  .main-nav {
    order: 3;

    width: 100%;

    margin: 8px 0 0;

    padding: 8px 2px 4px;

    display: flex;

    gap: 20px;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    border-top: 1px solid #eef3f7;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex-shrink: 0;

    font-size: 11px;
  }


  /* HERO */

  .hero {
    width: 100%;
    max-width: 100%;
  }

  .hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }


  /* SECTIONS */

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding: 55px 20px;
  }


  /* FOOTER */

  .site-footer {
    padding: 42px 20px 25px;
  }

  .footer-brand img {
    width: 155px;
    max-width: 155px;
  }

}


/* ========================================
   VERY SMALL PHONE
======================================== */

@media screen and (max-width: 374px) {

  .logo img {
    width: 135px;
    max-width: 135px;
  }

  .header-contact {
    font-size: 9px;

    padding: 7px 9px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-price {
    font-size: 40px;
  }

  .extra-price {
    flex-direction: column;

    text-align: center;
  }

}


/* ========================================
   TABLET / DESKTOP
======================================== */

@media screen and (min-width: 769px) {

  /* HEADER */

  .logo img {
    width: 200px;
    max-width: 200px;
  }


  /* SECTIONS */

  .service,
  .reason,
  .price-section,
  .works,
  .flow,
  .contact {
    padding: 78px 7%;
  }


  /* SERVICE */

  .service-list {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .service-box {
    display: block;

    text-align: center;
  }

  .service-icon {
    margin: 0 auto 15px;
  }


  /* POINT */

  .reason-list {
    grid-template-columns:
      repeat(4, 1fr);
  }


  /* PRICE */

  .plan-list {
    grid-template-columns:
      repeat(2, 1fr);
  }


  /* FLOW */

  .flow-list {
    grid-template-columns:
      repeat(4, 1fr);
  }


  /* FOOTER */

  .footer-menu {
    grid-template-columns:
      repeat(3, 1fr);

    text-align: left;

    gap: 55px;
  }

}
