/* =============================================
   申告マイスター LP - style.css
   メインカラー: #32cf6b (グリーン)
   アクセント: #40d778 (明るいグリーン)
   ダーク: #1e293b (フッター)
   背景薄: #f1f4f9
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION COMMON ===== */
.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.section-icon {
  color: #32cf6b;
  font-size: 14px;
}
.section-icon .fa-regular{

    margin-top: 10px;
    font-size: 26px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}

.section-sub-label {
    color: #32cf6b;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn--green {
  background: #32cf6b;
  color: #fff;
  border-color: #32cf6b;
}
.btn--green:hover {
  background: #148a58;
  border-color: #148a58;
}

.btn--outline {
  background: #fff;
  color: #32cf6b;
  border-color: #32cf6b;
}
.btn--outline:hover {
  background: #32cf6b;
  color: #fff;
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-logo {
  max-width: 220px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  color: #32cf6b;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.header-nav ul {
  display: flex;
  gap: 24px;
}

.header-nav ul li a {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav ul li a:hover {
  color: #32cf6b;
}

/* ハンバーガー */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: url(img/mainimg-bg2.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

/*
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(64, 215, 120, 0.12);
  border-radius: 50%;
}
  */

.hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-bottom: 40px;
}

.hero-badge-label span {
    background: #e8cf90;
    background: linear-gradient(90deg, rgba(232, 207, 144, 1) 0%, rgba(214, 182, 101, 1) 100%);
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 0.2em;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    color: #FFF;
    padding: 0 40px;
}

/*
.hero-badge-label {
  display: inline-block;
  background: #32cf6b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.hero-software-note {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 8px;
}

.hero-software-note span {
  font-weight: 700;
  color: #32cf6b;
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: #32cf6b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.hero-price-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badge-award {
  background: radial-gradient(circle, #b8860b, #8b6914);
  color: #ffe066;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffe066;
  box-shadow: 0 2px 8px rgba(139,105,20,0.4);
  flex-shrink: 0;
}

.badge-top {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
}

.badge-main {
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.price-number {
  font-size: 3rem;
  font-weight: 900;
  color: #e53e3e;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e53e3e;
  padding-bottom: 4px;
}

.price-note {
  font-size: 0.8rem;
  color: #888;
  padding-bottom: 6px;
}

.hero-image {
  flex: 0 0 45%;
  max-width: 45%;
  align-self: flex-end;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}
*/

.hero__sub {
font-size: 18px;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 8px;
}

.hero__tags {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag {
    background: #fff;
    border: 1px solid var(--green-main);
    color: #1aa96c;
    font-size: 16px;
    font-weight: 700;
    padding: 3px 25px;
    border-radius: 20px;
}

.hero__title {
font-size: clamp(28px, 4vw, 68px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1aa96c;
}

.hero__badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
    font-size: 30px;
    font-weight: 700;
    padding: 2px 25px;
    border-radius: 0;
}

.badge--green {
    background: #32cf6b;
    color: #fff;
}

.hero__price-block {
  display: flex;
       max-width: 748px;
  align-items: center;
  position: relative;
}
.hero__price-block a {
    position: absolute;
    left: 28%;
    bottom: 0;
}
.price-sticker {
}

.price-from {
  font-size: 11px;
  color: var(--text-light);
}

.price-number {
     font-size: 150px;
    font-weight: 900;
    color: var(--red-accent);
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ec1818;
}

.price-yen {
  font-size: 20px;
}

.price-unit {
  font-size: 16px;
}

.price-note {
  font-size: 11px;
  color: var(--text-light);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  border: none;
}

.btn--hero {
  background: #e63946;
  color: #fff;
  padding: 12px 80px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}

.btn--hero:hover {
  background: #c0303b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn--light {
  background: var(--white);
  color: var(--green-main);
  border: 2px solid var(--green-main);
  padding: 12px 28px;
  font-size: 14px;
  width: 100%;
}

.btn--light:hover {
  background: var(--green-main);
  color: #fff;
}

.btn--standard {
  background: var(--green-main);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(25, 169, 108, 0.35);
}

.btn--standard:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn--submit {
  background: var(--green-main);
  color: #fff;
  padding: 16px 60px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(25, 169, 108, 0.3);
}

.btn--submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* =============================================
   GREEN BANNER
   ============================================= */
.green-banner {
  background: #fff;
  padding: 40px 0 10px;
  text-align: center;
}

.banner-sub {
    color: #32cf6b;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.banner-title {
  display: inline-block;
    background: #32cf6b;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 48px;
    font-weight: bold;
    padding: 20px 60px 25px;
    border-radius: 200px;
    margin-bottom: 0;
    line-height: 1;
}

.banner-title strong {
  color: #fff600;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: #fff;
  padding: 40px 0 60px;
  background: linear-gradient(0deg, rgb(241 245 249) 0%, rgb(255 255 255) 100%);
}

.features-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.features-left {
  flex: 1;
  position: relative;
}

.features-left::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: 100px;
    height: 30px;
    background: #FFEB3B;
    border-radius: 4px;
    opacity: 0.5;
    transform: rotate(-20deg);
    z-index: 9999;
}
.features-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 100px;
    height: 30px;
    background: #FFEB3B;
    border-radius: 4px;
    opacity: 0.5;
    transform: rotate(-25deg);
    z-index: 9999;
}

.features-image {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.features-image img {
  width: 100%;
  object-fit: cover;
}

.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-item {
    background: #fff;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-badge {
display: inline-block;
    min-width: 52px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-indent: -5px;
    flex-shrink: 0;
    padding: 10px 30px;
    font-size: 32px;
    font-style: italic;
}

.feature-badge--yellow {
background: #E5C77E;
background: linear-gradient(180deg,rgba(229, 199, 126, 1) 0%, rgba(212, 182, 109, 1) 50%, rgba(201, 170, 79, 1) 50%, rgba(214, 182, 101, 1) 100%);
  color: #fff;
  border-radius: 6px 0 0 6px;
}

.feature-item p {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    padding-left: 15px;
    letter-spacing: 0.1em;
}

.feature-item p strong {
      color: #e53e3e;
    text-decoration: underline #fff600;
    text-underline-offset: -5px;
    text-decoration-thickness: 10px;
}

/* =============================================
   SERVICE SECTION
   ============================================= */
.service {
  background: #f1f5f9;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -50px;
    width: 30%;
    height: 100%;
    background: #19a96c;
    border-radius: 500px;
    opacity: 1;
}

.service::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -50px;
  width: 30%;
  height: 100%;
  background: #3fd777;
  border-radius: 500px;
  opacity: 1;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 5px solid #32cf6b;
}


.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(25,169,108,0.15);
}

.service-card-icon {
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon img {
  object-fit: contain;
  margin: 0 auto;
}

.service-card-label {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #32cf6b;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-card-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* =============================================
   WHY CHEAP
   ============================================= */
.why-cheap {
  background: #f1f4f9;
  padding: 70px 0;
}

.why-cheap-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.why-cheap-title {
  display: inline-block;
    background: #32cf6b;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 48px;
    font-weight: bold;
    padding: 20px 60px 25px;
    border-radius: 200px;
    margin-bottom: 0;
    line-height: 1;
}

.why-cheap-title .highlight {
  color: #ffe066;
}

.why-cheap-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-cheap-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-cheap-icon {
  flex-shrink: 0;
  width: 166px;
  display: flex;
  justify-content: center;
}

/*
.why-cheap-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
  */
.why-cheap-content{
 margin-top: 30px;
}

.why-cheap-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #32cf6b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-cheap-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  background: #fff;
  padding: 70px 0;
}

.pricing-desc {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 36px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  align-items: start;
}

.pricing-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
}

.pricing-card--light {
  border: 2px solid #e5e7eb;
  margin-top: 34px;
}

.pricing-card--standard {
  border: 2px solid #32cf6b;
}
.pricing-card--right {
  border: 2px solid #e5e7eb;
  margin-top: 34px;
}
.pricing-card-recommend {
  background: #32cf6b;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  background: #f1f5f9;
}

.pricing-card--standard .pricing-card-header {
  background: #f1f5f9;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.price-yen {
    font-size: 2rem;
    color: #32cf6b;
    font-weight: 700;
    padding-bottom: 6px;
    vertical-align: text-bottom;
}

.price-num {
    font-size: 4rem;
    font-weight: bold;
    color: #ff1100;
    line-height: 1;
    letter-spacing: 0.05em;
}

.price-unit-small {
  font-size: 1rem;
  color: #32cf6b;
  font-weight: 700;
  padding-bottom: 4px;
}

.pricing-note {
  font-size: 1rem;
  color: #888;
  margin-top: 4px;
}

.pricing-list {
padding: 30px 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-list li {
  font-size: 1rem;
    border-bottom: 1px dashed #e5e7eb;
  color: #444;
  display: flex;
      font-weight: bold;
  align-items: center;
  gap: 8px;
}

.check-green {
  color: #32cf6b;
  font-weight: 900;
  font-size: 1rem;
}

.pricing-btn-wrap {
  padding: 16px 20px 24px;
  text-align: center;
}

/* =============================================
   TARGET USER
   ============================================= */
.target-user {
  background: #f0fdf6;
  padding: 60px 0;
}

.target-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
    color: #32cf6b;
}

.target-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.target-image {
  flex: 0 0 236px;
margin-top: 20px;
  text-align: center;
}

.target-content {
  flex: 1;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.target-list > li {
    background: #FFF;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.target-list > li > strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.target-list > li > ul {
  list-style: none;
  padding-left: 12px;
}

.target-list > li > ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.contact-flow {
    text-align: center;
    margin: 50px auto 0;
}
.contact-flow a {
font-size: 1.6rem;
    padding: 15px 30px;
}
.flow { padding: 60px 0;}


/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: #fff;
  padding: 70px 0;
}

.contact-desc {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 36px;
}

.contact-layout {
  margin: 0 auto;
    display: grid;
    max-width: 70%;
    align-items: start;
}

.contact-info {
  /*display: flex;*/
  display: none;
  flex-direction: column;
  gap: 14px;
}

.contact-info-box {
  background: #f1f4f9;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  font-size: 1.2rem;
  color: #32cf6b;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.info-note {
  font-size: 0.75rem;
  color: #888;
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

.required {
  color: #e53e3e;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #32cf6b;
  box-shadow: 0 0 0 3px rgba(25,169,108,0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* フォームのメッセージ */
.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.form-error ul {
  list-style: disc;
  padding-left: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1e293b;
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
      max-width: 120px;
}

.logo-icon--white {
  color: #40d778;
}

.footer-logo-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-nav-title {
  color: #40d778;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav ul li a {
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2d3f55;
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: #64748b;
}

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

  .pricing-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 680px) {
  /* Header */
  .header-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .header-nav.open {
    transform: translateY(0);
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-nav ul li {
    border-bottom: 1px solid #f1f4f9;
  }

  .header-nav ul li a {
    display: block;
    padding: 14px 8px;
    font-size: 1rem;
  }

  .header-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 28px 0 0;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    padding-bottom: 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-image {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .price-number {
    font-size: 2.4rem;
  }

  /* Features */
  .features-inner {
    flex-direction: column;
  }

  .features-left {
    width: 100%;
  }

  /* Service */
  .service-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  /* Why Cheap */
  .why-cheap-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card--standard {
    order: -1;
  }

  /* Target */
  .target-inner {
    flex-direction: column;
    align-items: center;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  /* Banner */
  .banner-title {
    font-size: 1.1rem;
    padding: 10px 24px;
  }

  /* Why cheap title */
  .why-cheap-title {
    font-size: 1.1rem;
    padding: 10px 24px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.2rem;
  }

  .price-number {
    font-size: 2rem;
  }

  .hero-badge-award {
    width: 60px;
    height: 60px;
  }

  .hero-tags {
    gap: 4px;
  }

  .tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

.hero__sub {
    font-size: 14px;
}
.hero__title{
      text-align: center;
}
.badge {
    font-size: 15px;
    font-weight: 700;
    padding: 2px 15px;
    border-radius: 0;
}
.hero__price-block a { display: none;}
.hero {
    background: url(img/mainimg-bg2.jpg) no-repeat center;
    background-position: left;
    background-size: cover;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
.feature-badge{font-size: 24px;
    padding: 10px 20px;}
.feature-item p {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    padding-left: 0px;
    letter-spacing: 0;
}
.contact-layout { max-width: 100%;}    
}
.form-errors {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #b91c1c;
  list-style: none;
}
.form-success-msg {
  padding: 40px 20px;
  background: #f0fdf4;
  color: #166534;
  border: 2px solid #bbf7d0;
  border-radius: 8px;
  text-align: center;
}
.msg-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.required {
  color: #e11d48;
  margin-left: 4px;
}