/* ==============================
  01. Base
============================== */
:root {
  --color-green-dark: #002f1d;
  --color-green-main: #004225;
  --color-green-light: #006b3c;

  --color-gold-dark: #d7a82f;
  --color-gold-main: #f4d35e;
  --color-gold-light: #fff2a6;
  --color-yellow-cta: #ffd54a;

  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #222222;
  --color-border: #e6e6e0;

  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-green-dark);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

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

p,
h1 {
  margin: 0;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

/* ==============================
  02. Header
============================== */
.site-header {
  position: relative;
  z-index: 20;
  height: 164px;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  height: 100%;
  padding: 16px clamp(40px, 5vw, 92px) 0;
}

.site-header__top {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  height: 104px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--color-green-main);
}

.site-header__logo-icon {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  flex: 0 0 auto;
}

.site-header__logo-main {
  font-family: var(--font-serif);
  font-size: clamp(50px, 3.4vw, 60px);
  font-weight: 800;
  line-height: 1;
}

.site-header__logo-sub {
  margin-left: 22px;
  color: var(--color-black);
  font-size: clamp(22px, 1.5vw, 27px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-header__contact {
  justify-self: end;
  text-align: right;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #005a32;
}

.site-header__phone-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background: url("../assets/icon-phone.svg") center / contain no-repeat;
}

.site-header__phone-number {
  font-size: clamp(32px, 2.35vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__phone-note {
  margin-top: 8px;
  color: var(--color-text);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.2;
}

.site-header__cta {
  display: flex;
  width: 214px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #00633a 0%, #004d2f 48%, #003b24 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.14), 0 8px 18px rgba(0, 47, 29, 0.22);
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.site-header__cta-icon {
  width: 40px;
  height: 31px;
  margin-bottom: 8px;
  background: url("../assets/icon-mail.svg") center / contain no-repeat;
}

.site-header__cta-text {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.site-header__menu {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(0, 66, 37, 0.24);
  border-radius: 10px;
  cursor: pointer;
}

.site-header__menu span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-green-main);
}

.site-header__nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(40px, 3.2vw, 60px);
  height: 44px;
  padding-bottom: 10px;
}

.site-header__nav-link {
  position: relative;
  color: var(--color-black);
  font-size: clamp(17px, 1.12vw, 19px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header__nav-link::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--color-green-light);
  content: "";
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-header__nav-link--active::after,
.site-header__nav-link:hover::after {
  width: 72px;
}

/* ==============================
  03. First View Layout
============================== */
.fv {
  position: relative;
  height: 776px;
  min-height: 720px;
  overflow: hidden;
  background: var(--color-green-dark);
  isolation: isolate;
}

.fv__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.fv__house-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.24)),
    url("../assets/素材 2.png") center right / cover no-repeat,
    linear-gradient(135deg, #b7d2c0 0%, #e9f1ec 45%, #bfd1bd 100%);
  opacity: 0.78;
  filter: blur(1px) saturate(0.9) brightness(1.02);
}

.fv__green-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 47, 29, 1) 0%,
    rgba(0, 58, 35, 0.98) 44%,
    rgba(0, 66, 37, 0.82) 60%,
    rgba(0, 66, 37, 0.48) 73%,
    rgba(255, 255, 255, 0.05) 88%
  );
}

.fv__white-blur {
  position: absolute;
  top: -4%;
  left: 57%;
  width: 500px;
  height: 108%;
  background: rgba(255, 255, 255, 0.32);
  opacity: 0.45;
  filter: blur(42px);
  transform: translateX(-20%);
}

.fv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 720px;
  align-items: flex-start;
  padding: 0 clamp(48px, 5vw, 92px);
}

.fv__content {
  position: relative;
  z-index: 4;
  width: 61%;
  max-width: 980px;
  flex: 0 0 61%;
  padding-top: 34px;
  color: var(--color-white);
}

.fv__visual {
  position: relative;
  z-index: 2;
  width: 39%;
  min-width: 430px;
  height: 100%;
  flex: 0 0 39%;
}

/* ==============================
  04. First View Copy
============================== */
.fv__area-ribbon {
  display: inline-flex;
  position: relative;
  align-items: center;
  width: clamp(690px, 45vw, 780px);
  height: 64px;
  margin-bottom: 22px;
  padding-left: 58px;
  clip-path: polygon(32px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  background: linear-gradient(90deg, #fff2a6 0%, #f4d35e 45%, #d7a82f 100%);
  color: #003b24;
  font-size: clamp(26px, 1.72vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.fv__title {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.fv__title-accent {
  color: var(--color-gold-main);
  font-size: clamp(82px, 5.3vw, 94px);
}

.fv__title-small {
  color: var(--color-white);
  font-size: clamp(56px, 3.6vw, 66px);
}

.fv__title-main {
  color: var(--color-white);
  font-size: clamp(88px, 5.9vw, 104px);
  line-height: 0.98;
}

.fv__lead {
  margin-bottom: 22px;
  color: var(--color-white);
  font-size: clamp(23px, 1.55vw, 26px);
  font-weight: 800;
  line-height: 1.72;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

/* ==============================
  05. Feature Cards
============================== */
.fv__features {
  display: flex;
  align-items: stretch;
  width: max-content;
  margin-bottom: 24px;
  gap: 0;
}

.fv-feature-card {
  display: flex;
  align-items: center;
  width: 296px;
  height: 112px;
  padding: 20px 28px;
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: #005a32;
}

.fv-feature-card + .fv-feature-card {
  margin-left: 0;
}

.fv-feature-card--wide {
  width: 350px;
}

.fv-feature-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fv-feature-card__icon--yen {
  background-image: url("../assets/icon-yen-refresh.svg");
}

.fv-feature-card__icon--calendar {
  background-image: url("../assets/icon-calendar.svg");
}

.fv-feature-card__icon--pin {
  background-image: url("../assets/icon-pin.svg");
}

.fv-feature-card__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.fv-feature-card__main {
  margin-top: 6px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ==============================
  06. CTA Buttons
============================== */
.fv__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 0;
  margin-bottom: 14px;
}

.fv__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.fv__button--primary {
  justify-content: space-between;
  width: 560px;
  height: 92px;
  padding: 0 46px;
  border: 3px solid rgba(215, 168, 47, 0.65);
  border-radius: 58px;
  background: linear-gradient(180deg, #ffe67a 0%, #ffd54a 45%, #e5a900 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5), 0 8px 18px rgba(0, 0, 0, 0.25);
  color: var(--color-black);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.fv__button--primary:hover {
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.58), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.fv__button--secondary {
  width: 360px;
  height: 82px;
  gap: 18px;
  border: 2px solid var(--color-green-light);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  color: #005a32;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.fv__button-icon {
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fv__button-icon--document {
  width: 42px;
  height: 42px;
  background-image: url("../assets/icon-document.svg");
  filter: brightness(0) saturate(100%);
}

.fv__button-icon--chat {
  width: 42px;
  height: 42px;
  background-image: url("../assets/icon-chat.svg");
}

.fv__button-text {
  min-width: 0;
  white-space: nowrap;
}

.fv__button-arrow {
  margin-left: 20px;
  font-size: 52px;
  font-weight: 600;
  line-height: 0.8;
}

.fv__no-pressure {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  margin-left: 116px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.fv__no-pressure-icon {
  width: 36px;
  height: 36px;
  background: url("../assets/icon-shield.svg") center / contain no-repeat;
}

/* ==============================
  07. Visual Area
============================== */
.fv__house-line {
  position: absolute;
  left: -118px;
  top: 150px;
  z-index: 2;
  width: 350px;
  height: 280px;
  background: url("../assets/house-line.svg") center / contain no-repeat;
  opacity: 0.55;
  transform: translate(40px, 20px) scale(0.92);
}

.fv__person {
  position: absolute;
  right: clamp(36px, 3vw, 48px);
  bottom: 0;
  z-index: 3;
  height: 670px;
  max-height: 90%;
  width: auto;
  object-fit: contain;
}

.fv__person-fallback {
  display: none;
  position: absolute;
  right: 92px;
  bottom: 0;
  z-index: 3;
  width: 330px;
  height: 610px;
}

.fv__person-fallback::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0c2a2, #d69a76);
  content: "";
  transform: translateX(-50%);
  box-shadow: 0 18px 0 #1f1d27;
}

.fv__person-fallback::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 330px;
  height: 500px;
  border-radius: 120px 120px 0 0;
  background: linear-gradient(140deg, #202337, #111523);
  content: "";
  transform: translateX(-50%);
}

.fv__visual.is-person-missing .fv__person-fallback {
  display: block;
}

.fv__profile-card {
  position: absolute;
  right: clamp(54px, 4.4vw, 72px);
  bottom: 82px;
  z-index: 4;
  width: 230px;
  min-height: 128px;
  padding: 22px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: var(--color-text);
}

.fv__profile-company {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.fv__profile-name {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.fv__profile-position {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

/* ==============================
  08. Responsive
============================== */
@media (max-width: 1599px) {
  .site-header {
    height: 150px;
  }

  .site-header__inner {
    padding-right: clamp(48px, 4vw, 64px);
    padding-left: clamp(48px, 4vw, 64px);
  }

  .site-header__top {
    height: 96px;
    gap: 22px;
  }

  .site-header__logo-icon {
    width: 62px;
    height: 62px;
    margin-right: 12px;
  }

  .site-header__logo-main {
    font-size: 50px;
  }

  .site-header__logo-sub {
    margin-left: 16px;
    font-size: 22px;
  }

  .site-header__phone-icon {
    width: 34px;
    height: 34px;
  }

  .site-header__phone-number {
    font-size: 34px;
  }

  .site-header__cta {
    width: 194px;
    height: 112px;
  }

  .site-header__nav {
    height: 38px;
    gap: clamp(30px, 3vw, 46px);
  }

  .fv {
    height: 720px;
    min-height: 720px;
  }

  .fv__inner {
    min-height: 720px;
    padding: 0 clamp(48px, 4vw, 64px);
  }

  .fv__area-ribbon {
    width: 680px;
    height: 56px;
    margin-bottom: 20px;
    padding-left: 48px;
    font-size: 24px;
  }

  .fv__title {
    margin-bottom: 14px;
  }

  .fv__title-accent {
    font-size: 76px;
  }

  .fv__title-small {
    font-size: 52px;
  }

  .fv__title-main {
    font-size: 88px;
  }

  .fv__lead {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.68;
  }

  .fv-feature-card {
    width: 280px;
    height: 108px;
    padding: 18px 24px;
    gap: 16px;
  }

  .fv-feature-card--wide {
    width: 336px;
  }

  .fv-feature-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .fv-feature-card__label {
    font-size: 17px;
  }

  .fv-feature-card__main {
    font-size: 30px;
  }

  .fv__features {
    margin-bottom: 22px;
  }

  .fv__actions {
    gap: 28px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .fv__button--primary {
    width: 540px;
    height: 90px;
    padding: 0 42px;
    font-size: 28px;
  }

  .fv__button--secondary {
    width: 344px;
    height: 80px;
    font-size: 23px;
  }

  .fv__button-icon--document,
  .fv__button-icon--chat {
    width: 36px;
    height: 36px;
  }

  .fv__button-arrow {
    font-size: 46px;
  }

  .fv__no-pressure {
    margin-top: 12px;
    margin-left: 104px;
    font-size: 19px;
  }

  .fv__house-line {
    left: -96px;
    top: 140px;
    width: 320px;
  }

  .fv__person {
    right: 40px;
    height: 650px;
    max-height: 90%;
  }

  .fv__profile-card {
    right: 46px;
    bottom: 78px;
    width: 214px;
    min-height: 118px;
    padding: 20px 22px;
  }

  .fv__profile-name {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .site-header {
    height: 94px;
  }

  .site-header__inner {
    padding: 10px 40px 0;
  }

  .site-header__top {
    display: flex;
    height: 74px;
  }

  .site-header__logo-icon {
    width: 54px;
    height: 54px;
  }

  .site-header__logo-main {
    font-size: 42px;
  }

  .site-header__logo-sub {
    font-size: 18px;
  }

  .site-header__contact {
    margin-left: auto;
  }

  .site-header__phone-icon {
    width: 28px;
    height: 28px;
  }

  .site-header__phone-number {
    font-size: 26px;
  }

  .site-header__phone-note {
    display: none;
  }

  .site-header__cta {
    width: 148px;
    height: 66px;
    border-radius: 12px;
  }

  .site-header__cta-icon {
    width: 28px;
    height: 22px;
    margin-bottom: 4px;
  }

  .site-header__cta-text {
    font-size: 14px;
    line-height: 1.35;
  }

  .site-header__menu {
    display: flex;
    flex: 0 0 auto;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 94px;
    right: 24px;
    left: 24px;
    z-index: 25;
    height: auto;
    padding: 18px 22px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 28px;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(0, 47, 29, 0.16);
  }

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

  .site-header__nav-link::after {
    bottom: -8px;
  }

  .fv {
    height: auto;
    min-height: 760px;
  }

  .fv__house-bg {
    width: 82%;
    opacity: 0.72;
  }

  .fv__green-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 47, 29, 1) 0%,
      rgba(0, 66, 37, 0.96) 46%,
      rgba(0, 66, 37, 0.64) 72%,
      rgba(0, 47, 29, 0.42) 100%
    );
  }

  .fv__white-blur {
    left: 60%;
    width: 420px;
    opacity: 0.72;
  }

  .fv__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    min-height: 760px;
    padding: 48px 40px 42px;
  }

  .fv__content {
    width: auto;
    max-width: none;
    flex: none;
  }

  .fv__visual {
    width: auto;
    min-width: 0;
    min-height: 620px;
    flex: none;
  }

  .fv__area-ribbon {
    width: min(100%, 640px);
    height: 54px;
    margin-bottom: 22px;
    padding-left: 38px;
    font-size: 21px;
  }

  .fv__title {
    white-space: normal;
  }

  .fv__title-accent {
    font-size: 58px;
  }

  .fv__title-small {
    font-size: 40px;
  }

  .fv__title-main {
    font-size: 70px;
  }

  .fv__lead {
    font-size: 19px;
    line-height: 1.78;
  }

  .fv__features {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
  }

  .fv-feature-card,
  .fv-feature-card--wide {
    width: auto;
    height: 104px;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .fv-feature-card--wide {
    grid-column: 1 / -1;
  }

  .fv-feature-card__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .fv-feature-card__label {
    font-size: 16px;
  }

  .fv-feature-card__main {
    font-size: 30px;
  }

  .fv__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: min(100%, 520px);
  }

  .fv__button--primary,
  .fv__button--secondary {
    width: 100%;
  }

  .fv__button--primary {
    height: 84px;
    padding: 0 34px;
    font-size: 25px;
  }

  .fv__button--secondary {
    height: 74px;
    font-size: 22px;
  }

  .fv__no-pressure {
    margin-top: 12px;
    margin-left: 44px;
    font-size: 17px;
  }

  .fv__house-line {
    top: 122px;
    left: -118px;
    width: 250px;
    opacity: 0.56;
  }

  .fv__person {
    right: -10px;
    height: 590px;
    max-height: calc(100% + 34px);
  }

  .fv__profile-card {
    right: 0;
    bottom: 80px;
    width: 184px;
    min-height: 104px;
    padding: 16px 18px;
  }

  .fv__profile-company {
    font-size: 17px;
  }

  .fv__profile-name {
    font-size: 22px;
  }

  .fv__profile-position {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .fv {
    min-height: 0;
  }

  .fv__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 44px 34px 44px;
  }

  .fv__content {
    display: contents;
  }

  .fv__area-ribbon,
  .fv__title,
  .fv__lead,
  .fv__features,
  .fv__actions,
  .fv__no-pressure,
  .fv__visual {
    position: relative;
    z-index: 3;
  }

  .fv__area-ribbon {
    order: 1;
  }

  .fv__title {
    order: 2;
  }

  .fv__lead {
    order: 3;
  }

  .fv__visual {
    order: 4;
  }

  .fv__features {
    order: 5;
  }

  .fv__actions {
    order: 6;
  }

  .fv__no-pressure {
    order: 7;
  }

  .fv__visual {
    width: min(100%, 520px);
    min-height: 430px;
    justify-self: center;
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .fv__person {
    right: 50%;
    height: 430px;
    max-width: none;
    transform: translateX(54%);
  }

  .fv__profile-card {
    right: 18px;
    bottom: 46px;
  }

  .fv__house-line {
    left: 16px;
    top: 80px;
    width: 220px;
  }

  .fv__features {
    width: 100%;
  }

  .fv__actions {
    width: 100%;
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 72px;
  }

  .site-header__inner {
    padding: 8px 14px 0;
  }

  .site-header__top {
    height: 56px;
    gap: 8px;
  }

  .site-header__logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }

  .site-header__logo-main {
    font-size: 32px;
  }

  .site-header__logo-sub {
    margin-left: 8px;
    font-size: 12px;
  }

  .site-header__contact {
    margin-left: auto;
  }

  .site-header__phone {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 90, 50, 0.24);
    border-radius: 50%;
  }

  .site-header__phone-icon {
    width: 23px;
    height: 23px;
  }

  .site-header__phone-number {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .site-header__cta {
    width: 82px;
    height: 46px;
    border-radius: 10px;
  }

  .site-header__cta-icon {
    width: 20px;
    height: 16px;
    margin-bottom: 2px;
  }

  .site-header__cta-text {
    font-size: 10px;
    line-height: 1.24;
    letter-spacing: 0.02em;
  }

  .site-header__menu {
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .site-header__menu span {
    width: 22px;
  }

  .site-header__nav {
    top: 72px;
    right: 12px;
    left: 12px;
    padding: 16px;
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .site-header__nav-link {
    font-size: 15px;
  }

  .fv {
    height: auto;
    min-height: 0;
  }

  .fv__house-bg {
    width: 100%;
    background-position: center top;
    opacity: 0.28;
    filter: blur(1px) saturate(0.88);
  }

  .fv__green-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 47, 29, 0.94) 0%,
      rgba(0, 66, 37, 0.93) 48%,
      rgba(0, 47, 29, 0.96) 100%
    );
  }

  .fv__white-blur {
    display: none;
  }

  .fv__inner {
    padding: 28px 20px 40px;
  }

  .fv__area-ribbon {
    width: 100%;
    height: 48px;
    margin-bottom: 18px;
    padding-left: 18px;
    clip-path: polygon(16px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .fv__title {
    margin-bottom: 14px;
    line-height: 1.12;
  }

  .fv__title-accent {
    font-size: clamp(38px, 11vw, 46px);
  }

  .fv__title-small {
    font-size: clamp(28px, 7.2vw, 34px);
  }

  .fv__title-main {
    font-size: clamp(52px, 14vw, 60px);
  }

  .fv__lead {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: 0.02em;
  }

  .fv__visual {
    width: 100%;
    min-height: 420px;
    margin-top: 2px;
    margin-bottom: 22px;
  }

  .fv__house-line {
    display: none;
  }

  .fv__person {
    right: 50%;
    bottom: 0;
    height: 420px;
    transform: translateX(54%);
  }

  .fv__person-fallback {
    right: 50%;
    width: 230px;
    height: 340px;
    transform: translateX(50%);
  }

  .fv__profile-card {
    right: 8px;
    bottom: 42px;
    width: 168px;
    min-height: 92px;
    padding: 13px 15px;
    border-radius: 12px;
  }

  .fv__profile-company {
    font-size: 14px;
  }

  .fv__profile-name {
    margin-top: 5px;
    font-size: 20px;
  }

  .fv__profile-position {
    margin-top: 4px;
    font-size: 12px;
  }

  .fv__features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .fv-feature-card,
  .fv-feature-card--wide {
    grid-column: auto;
    height: 88px;
    padding: 16px 18px;
    gap: 16px;
    border-radius: 13px;
  }

  .fv-feature-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .fv-feature-card__label {
    font-size: 15px;
  }

  .fv-feature-card__main {
    margin-top: 4px;
    font-size: 27px;
  }

  .fv__actions {
    gap: 12px;
    margin-bottom: 14px;
  }

  .fv__button--primary {
    height: 72px;
    padding: 0 22px;
    border-width: 2px;
    border-radius: 40px;
    font-size: 20px;
    letter-spacing: 0.04em;
  }

  .fv__button--secondary {
    height: 64px;
    gap: 12px;
    border-radius: 22px;
    font-size: 20px;
  }

  .fv__button-icon--document,
  .fv__button-icon--chat {
    width: 28px;
    height: 28px;
  }

  .fv__button-arrow {
    margin-left: 10px;
    font-size: 34px;
  }

  .fv__no-pressure {
    justify-content: center;
    margin-top: 2px;
    margin-left: 0;
    gap: 8px;
    font-size: 15px;
  }

  .fv__no-pressure-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 420px) {
  .site-header__logo-sub {
    display: none;
  }

  .site-header__cta {
    width: 76px;
  }

  .fv__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .fv__area-ribbon {
    height: 46px;
    font-size: 14px;
  }

  .fv__lead {
    font-size: 15px;
  }

  .fv__visual {
    min-height: 392px;
  }

  .fv__person {
    height: 392px;
  }

  .fv__profile-card {
    width: 156px;
    padding: 12px 13px;
  }

  .fv__profile-name {
    font-size: 18px;
  }

  .fv__button--primary {
    height: 70px;
    padding: 0 18px;
    font-size: 18px;
  }

  .fv__button--secondary {
    font-size: 18px;
  }
}
