/* ===========================
   Variables
=========================== */
:root {
  --teal:       #2B9E9E;
  --teal-dark:  #1F7878;
  --teal-bg:    #1A6868;
  --navy:       #0D1F3C;
  --navy-light: #1A3054;
  --white:      #FFFFFF;
  --gray-bg:    #F7F8FA;
  --gray-light: #EEEFF2;
  --gray-text:  #666;
  --text:       #222;
  --border:     #DDE0E6;

  --font:       'Noto Sans JP', sans-serif;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);

  --section-py: 80px;
  --container:  1100px;
  --transition: .3s ease;
}

/* ===========================
   Reset / Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.pc-br { display: block; }

/* ===========================
   Container
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43,158,158,.35);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43,158,158,.45);
}
.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }
.btn--white {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
}
.btn--white:hover {
  background: #f0fafa;
  transform: translateY(-2px);
}
.btn--sm  { padding: 10px 20px; font-size: .85rem; }
.btn--lg  { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===========================
   Section common
=========================== */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .06em;
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  margin-top: 4px;
}

/* ===========================
   Animations
=========================== */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Header
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ===========================
   Floating CTA
=========================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.floating-cta__text { color: var(--white); font-size: .9rem; }
.floating-cta__text strong { color: var(--teal); }

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background-image:
    linear-gradient(rgba(13,31,60,.78), rgba(13,31,60,.78)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
/* Hero proof badge */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(43,158,158,.18);
  border: 1px solid rgba(43,158,158,.4);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: .03em;
}
.hero__proof strong { color: var(--teal); font-weight: 700; }

.hero__eyebrow {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
.hero__lead {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 32px;
}
.hero__tabs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 16px;
}
.hero__tab {
  padding: 10px 20px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
  border-right: 1px solid rgba(255,255,255,.2);
}
.hero__tab:last-child { border-right: none; }
.hero__tab:hover,
.hero__tab.is-active {
  background: var(--teal);
  color: var(--white);
}
.hero__tab-body { min-height: 28px; }
.hero__tab-text {
  display: none;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  animation: fadeIn .3s ease;
}
.hero__tab-text.is-active { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Hero form card */
.hero__form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.hero__form-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__form-title span { color: var(--teal); }

.hero-form .form-field { margin-bottom: 12px; }
.hero-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  background: var(--gray-bg);
}
.hero-form input:focus { border-color: var(--teal); background: var(--white); }
.hero-form input.is-error { border-color: #e55; }
.hero-form .btn { margin-top: 8px; font-size: 1rem; padding: 15px; }
.form-availability {
  text-align: center;
  font-size: .76rem;
  color: var(--gray-text);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-text);
  margin-top: 10px;
}
.form-success {
  text-align: center;
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.8;
  padding: 16px 0;
}

/* ===========================
   About
=========================== */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about__circles {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.about__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.5;
  transition: all .3s ease;
}
.about__circle:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.05);
}
.about__num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}
.about__circle:hover .about__num { color: var(--white); }
.about__photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 380px;
}
.about__photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about__text {
  text-align: center;
  font-size: .95rem;
  line-height: 1.9;
  color: var(--gray-text);
}

/* ===========================
   Data
=========================== */
.data {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
  text-align: center;
}
.data__desc {
  color: var(--gray-text);
  font-size: .95rem;
  line-height: 1.9;
  margin-bottom: 48px;
}
.data__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.data__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.data__prefix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background: #F5D76E;
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.data__count {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -.02em;
}
.data__suffix {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

/* ===========================
   Feature
=========================== */
.feature {
  padding: var(--section-py) 0;
  background: var(--white);
}
.feature__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.feature__row:last-child { margin-bottom: 0; }
.feature__row--rev .feature__img { order: 2; }
.feature__row--rev .feature__body { order: 1; }
.feature__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .5s ease;
}
.feature__img:hover img { transform: scale(1.04); }
.feature__img--price {
  background: linear-gradient(135deg, var(--teal-bg), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.price-badge { text-align: center; color: var(--white); }
.price-badge__label { font-size: .9rem; opacity: .85; margin-bottom: 4px; }
.price-badge__num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}
.price-badge__num span { font-size: 1.4rem; font-weight: 700; }
.price-badge__note { font-size: .85rem; opacity: .85; margin-top: 8px; }

.feature__point {
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.feature__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.feature__desc {
  font-size: .93rem;
  color: var(--gray-text);
  line-height: 1.9;
}

/* ===========================
   Pricing
=========================== */
.pricing {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
}
.pricing__wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0 20px;
  flex-shrink: 0;
}
.pricing__card {
  flex: 1;
  padding: 36px 32px;
}
.pricing__card--main {
  background: var(--navy);
  color: var(--white);
}
.pricing__card--other {
  background: var(--white);
  color: var(--text);
}
.pricing__name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
  opacity: .7;
}
.pricing__card--main .pricing__name { color: var(--teal); opacity: 1; }
.pricing__cost {
  font-size: 1rem;
  margin-bottom: 24px;
}
.pricing__cost strong {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}
.pricing__card--main .pricing__cost strong { color: var(--teal); }
.pricing__list li {
  font-size: .88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  line-height: 1.5;
}
.pricing__card--other .pricing__list li { border-bottom-color: var(--border); color: var(--gray-text); }
.pricing__cta {
  text-align: center;
}
.pricing__cta p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--gray-text);
}
.pricing__cta strong { color: var(--teal); }

/* ===========================
   Clients
=========================== */
.clients {
  padding: var(--section-py) 0;
  background: var(--white);
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.clients__logo {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  height: 80px;
  transition: all var(--transition);
}
.clients__logo:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(43,158,158,.15);
}
.clients__logo img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.clients__logo:hover img {
  filter: grayscale(0);
}

/* ===========================
   Compare
=========================== */
.compare {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
}
.compare__scroll { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 560px;
}
.compare__table th,
.compare__table td {
  padding: 16px 20px;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare__table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.compare__th--main { background: var(--teal) !important; }
.compare__td--main {
  background: rgba(43,158,158,.06);
  font-weight: 600;
  color: var(--teal-dark);
}
.compare__table tbody tr:nth-child(odd) td:not(.compare__td--main) {
  background: var(--white);
}
.compare__table tbody tr:nth-child(even) td:not(.compare__td--main) {
  background: var(--gray-bg);
}
.compare__table td:first-child {
  text-align: left;
  font-weight: 600;
  background: var(--white) !important;
  color: var(--text);
}
.compare__td--main strong { color: var(--teal); font-size: 1.1rem; }

/* ===========================
   Mid CTA
=========================== */
.mid-cta {
  background: linear-gradient(135deg, var(--teal-bg), var(--teal));
  padding: 72px 24px;
  text-align: center;
}
.mid-cta__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.mid-cta__title strong { color: #FFE566; }
.mid-cta__sub {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  margin-bottom: 32px;
}

/* ===========================
   FAQ
=========================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__q:hover { color: var(--teal); }
.faq__q[aria-expanded="true"] { color: var(--teal); }
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--teal);
  border-radius: 50%;
  position: relative;
  transition: all var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after { width: 2px; height: 10px; transition: transform var(--transition); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--teal); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--white); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq__a.is-open { max-height: 300px; padding-bottom: 20px; }
.faq__a p {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.9;
  padding-left: 4px;
}

/* ===========================
   Contact
=========================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
}
.contact__note {
  font-size: .88rem;
  color: var(--gray-text);
  margin-top: 8px;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 40px;
  box-shadow: var(--shadow);
}
.contact-form__row { margin-bottom: 24px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.required {
  background: #e55;
  color: var(--white);
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--teal); background: var(--white); }
.form-input.is-error { border-color: #e55; }
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}
.contact-form__agree {
  margin-bottom: 28px;
  text-align: center;
}
.contact-form__agree a { color: var(--teal); text-decoration: underline; }
.contact-form__submit { text-align: center; }
.form-error {
  text-align: center;
  color: #e55;
  font-size: .88rem;
  margin-top: 12px;
  padding: 10px;
  background: #fff5f5;
  border-radius: var(--radius);
}
.contact-form__success { display: none; }
.contact-form__success.is-visible { display: block; }
.success-inner {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 48px 24px;
}
.success-icon {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 16px;
}
.success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.success-text {
  font-size: .9rem;
  color: var(--gray-text);
}

/* ===========================
   Flow
=========================== */
.flow {
  padding: var(--section-py) 0;
  background: var(--white);
}
.flow__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.flow__step {
  flex: 1;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.flow__arrow {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  color: var(--teal);
  font-size: 1.4rem;
}
.flow__arrow::after {
  content: '→';
}
.flow__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.flow__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.flow__period {
  display: inline-block;
  font-size: .8rem;
  color: var(--teal);
  background: rgba(43,158,158,.12);
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.flow__desc {
  font-size: .875rem;
  color: var(--gray-text);
  line-height: 1.7;
  text-align: left;
}

/* ===========================
   Voices
=========================== */
.voices {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.voices .section-title { color: var(--teal); }
.voices .section-sub { color: rgba(255,255,255,.6); }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}
.voice__card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--teal);
  opacity: .4;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.voice__body {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
  margin-bottom: 16px;
  padding-top: 24px;
}
.voice__meta {
  font-size: .78rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .03em;
}

@media (max-width: 900px) {
  .voices__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================
   Footer
=========================== */
.footer {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.footer__nav a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__copy {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}

/* ===========================
   Responsive — Tablet (≤900px)
=========================== */
@media (max-width: 900px) {
  :root { --section-py: 64px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 48px;
  }
  .hero__form-card { max-width: 480px; margin: 0 auto; width: 100%; }

  .feature__row,
  .feature__row--rev {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature__row--rev .feature__img { order: 0; }
  .feature__row--rev .feature__body { order: 0; }

  .pricing__wrap {
    flex-direction: column;
    max-width: 400px;
  }
  .pricing__vs { padding: 16px; writing-mode: horizontal-tb; }

  .clients__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* ===========================
   Responsive — Mobile (≤600px)
=========================== */
@media (max-width: 600px) {
  :root { --section-py: 52px; }
  .pc-br { display: none; }

  .hero { min-height: auto; padding: 80px 0 0; }
  .hero__title { font-size: 1.7rem; }
  .hero__tabs { flex-wrap: wrap; }
  .hero__tab { font-size: .78rem; padding: 8px 14px; }
  .hero__form-card { border-radius: 0; padding: 28px 20px; box-shadow: none; }

  .section-title { font-size: 1.6rem; }

  .about__circles { gap: 20px; }
  .about__circle { width: 120px; height: 120px; }

  .data__stats { gap: 32px; }
  .data__count { font-size: 3.5rem; }

  .feature__img img,
  .feature__img--price { height: 220px; min-height: 220px; }

  .pricing__card { padding: 24px 20px; }

  .clients__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .clients__logo { height: 64px; padding: 10px 8px; }
  .clients__logo img { max-height: 36px; }

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

  .floating-cta__inner { flex-direction: column; gap: 8px; text-align: center; }
  .floating-cta { padding: 16px 24px; }

  .compare__table { font-size: .82rem; }
  .compare__table th,
  .compare__table td { padding: 12px 12px; }

  .flow__steps { flex-direction: column; gap: 0; }
  .flow__arrow { transform: rotate(90deg); margin: 4px auto; }
  .flow__step { padding: 24px 20px; }
}
