@charset "UTF-8";
/* Theme Name: 福岡拠点 */
:root {
  --iron: #1a1a1a;
  --steel: #252520;
  --concrete: #3d3d38;
  --ash: #6b6b65;
  --fog: #a8a8a0;
  --paper: #faf8f3;
  --cream: #f3f0e8;
  --accent: #c8872a;
  --accent-lt: #e8a84a;
  --green: #4e6e46;
  --green-lt: #6a9060;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--paper);
  color: var(--iron);
  overflow-x: hidden;
}

/* =====================
   HEADER
===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 66px;
  padding: 0 5%;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 135, 42, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.logo-text small {
  display: block;
  font-size: 0.62rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}

.header-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 26px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
@media (max-width: 768px) {
  .header-cta {
    padding: 10px;
  }
}

.header-cta:hover {
  background: var(--accent-lt);
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  padding-top: 66px;
  background: var(--iron);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.012) 60px, rgba(255, 255, 255, 0.012) 61px), repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.012) 60px, rgba(255, 255, 255, 0.012) 61px);
  pointer-events: none;
}

.hero-text {
  padding: 80px 5% 80px 8%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
  display: block;
}

.hero h1 .green-em {
  color: #8ec47e;
  font-style: normal;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--fog);
  line-height: 2;
  margin-bottom: 46px;
  font-weight: 300;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 17px 40px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}

.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 17px 40px;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(200, 135, 42, 0.07);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fog);
  margin-top: 5px;
  letter-spacing: 0.05em;
}

/* Hero right — split panels */
.hero-visual {
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: relative;
  z-index: 2;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}

.hero-panel-top {
  background: linear-gradient(160deg, #2e2a1e 0%, #1e1c16 100%);
  border-bottom: 1px solid rgba(200, 135, 42, 0.15);
}

.hero-panel-bottom {
  background: linear-gradient(160deg, #1a2418 0%, #111a10 100%);
}

.panel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.panel-label {
  position: relative;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

/* =====================
   BADGE STRIP
===================== */
.strip {
  background: var(--accent);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.strip-item {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.strip-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.strip-item:first-child::before {
  display: none;
}

/* =====================
   SHARED SECTION STYLES
===================== */
.sec-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.sec-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 52px;
}

/* =====================
   PAIN
===================== */
.pain {
  background: var(--steel);
  padding: 96px 8%;
}

.pain .sec-title {
  color: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.pain-card {
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 10px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.pain-card:hover {
  background: rgba(200, 135, 42, 0.04);
  border-color: rgba(200, 135, 42, 0.18);
}

.pain-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(200, 135, 42, 0.5);
  position: absolute;
  top: 16px;
  right: 22px;
  line-height: 1;
}

.pain-icon {
  display: block;
}
.pain-icon i {
  color: var(--fog);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pain-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--fog);
  line-height: 1.85;
  font-weight: 300;
}

/* =====================
   FEATURES
===================== */
.features {
  background: var(--paper);
  padding: 96px 20px;
}

.features .sec-title {
  color: var(--iron);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feat-card {
  padding: 36px 30px;
  background: var(--white);
  border-top: 3px solid var(--accent);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.feat-card.green {
  border-top-color: var(--green);
}

.feat-icon {
  font-size: 1.9rem;
  margin-bottom: 18px;
  display: block;
  color: var(--concrete);
}

.feat-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: var(--iron);
  margin-bottom: 12px;
  font-weight: 700;
}

.feat-card p {
  font-size: 0.84rem;
  color: var(--ash);
  line-height: 1.9;
}

/* =====================
   CONSTRUCTION EXAMPLES
===================== */
.works {
  background: var(--cream);
  padding: 96px 20px;
}

.works .sec-title {
  color: var(--iron);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
}

/* Placeholder image area with SVG illustration */
.work-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-thumb-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  text-transform: uppercase;
  z-index: 2;
}

.work-thumb-label.green {
  background: var(--green);
}

.work-thumb svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Photo placeholder overlay text */
.work-thumb-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  z-index: 3;
}

.work-body {
  padding: 22px 24px 28px;
}

.work-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.work-tag {
  font-size: 0.72rem;
  color: var(--ash);
  background: var(--cream);
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

.work-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: var(--iron);
  margin-bottom: 10px;
  font-weight: 700;
}

.work-card p {
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.75;
}

.work-specs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
  flex-wrap: wrap;
}

.work-spec {
  font-size: 0.75rem;
  color: var(--ash);
}

.work-spec strong {
  display: block;
  font-size: 0.88rem;
  color: var(--iron);
  font-weight: 600;
  margin-bottom: 1px;
}

/* =====================
   USE CASES
===================== */
.usecases {
  background: var(--iron);
  padding: 96px 20px;
}

.usecases .sec-label {
  color: var(--accent);
}

.usecases .sec-label::before {
  background: var(--accent);
}

.usecases .sec-title {
  color: var(--white);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s;
}

.case-card:hover {
  border-color: rgba(200, 135, 42, 0.25);
}

.case-head {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-head.agri {
  background: rgba(78, 110, 70, 0.2);
}

.case-head.biz {
  background: rgba(200, 135, 42, 0.12);
}

.case-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  flex-shrink: 0;
}

.agri .case-tag {
  background: var(--green);
  color: var(--white);
}

.biz .case-tag {
  background: var(--accent);
  color: var(--white);
}

.case-head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

.case-body {
  padding: 24px 28px;
}

.case-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-body ul li {
  font-size: 0.86rem;
  color: var(--fog);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
  font-weight: 300;
}

.case-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
}

/* =====================
   FLOW
===================== */
.flow {
  background: var(--steel);
  padding: 96px 20px;
}

.flow .sec-title {
  color: var(--white);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(200, 135, 42, 0.15));
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .step-num {
    height: 50px;
    width: 160px;
  }
}

.step h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  font-size: 0.78rem;
  color: var(--fog);
  line-height: 1.75;
  font-weight: 300;
}

/* =====================
   CTA BANNER
===================== */
.cta-banner {
  background: var(--accent);
  padding: 76px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.55;
}

.cta-banner h2 small {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 0.82;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =====================
   CONTACT
===================== */
.contact {
  background: var(--paper);
  padding: 96px 20px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--iron);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.9;
  margin-bottom: 36px;
  font-weight: 300;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  text-decoration: none;
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-item.green {
  border-left-color: var(--green);
}

.info-lbl {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  min-width: 52px;
  padding-top: 2px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.info-item.green .info-lbl {
  color: var(--green);
}

.info-val {
  font-size: 0.88rem;
  color: var(--iron);
  line-height: 1.6;
}

/* Form */
.custom-contact-form {
  border-top: solid 2px var(--accent);
  background-color: #ffffff;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}
.custom-contact-form br {
  display: none;
}
.custom-contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
}

.wpcf7-response-output {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  font-size: 0.8rem;
  margin: 10px auto 0 auto !important;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
}

.wpcf7-spinner {
  display: none !important;
}

/* ヘッダー部分 */
.form-header h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}

.form-header p {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* レイアウト設定 */
.form-group {
  margin-bottom: 25px;
}

.form-row.flex-row {
  display: flex;
  gap: 20px;
}

.form-group.half {
  flex: 1;
}

/* ラベルのスタイル */
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
}

.required {
  color: #c00;
  margin-left: 4px;
}

/* 入力フィールド全般 */
input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e0e0e0;
  background-color: #f9f8f6;
  border-radius: 2px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #999;
  outline: none;
}

/* プレースホルダーの色 */
::-moz-placeholder {
  color: #aaa;
}
::placeholder {
  color: #aaa;
}

/* テキストエリアの高さ */
textarea {
  height: 120px;
  resize: vertical;
}

/* 送信ボタン */
.form-submit {
  margin-top: 30px;
}

.form-submit .submit-button {
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  font-weight: bold;
  padding: 20px;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
}

.form-submit .submit-button:hover {
  opacity: 0.85;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .custom-contact-form {
    padding: 25px 20px;
  }
  .form-row.flex-row {
    flex-direction: column;
    gap: 0;
  }
}
/* =====================
   FOOTER
===================== */
footer {
  background: var(--iron);
  padding: 32px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(200, 135, 42, 0.2);
}

footer p {
  font-size: 0.72rem;
  color: var(--ash);
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.7s 0.05s both;
}

.hero h1 {
  animation: fadeUp 0.8s 0.2s both;
}

.hero-sub {
  animation: fadeUp 0.8s 0.35s both;
}

.hero-btns {
  animation: fadeUp 0.8s 0.5s both;
}

.hero-stats {
  animation: fadeUp 0.8s 0.65s both;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-text {
    padding: 72px 6% 60px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .flow-steps::before {
    display: none;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    text-align: center;
  }
  .strip {
    gap: 16px;
  }
}/*# sourceMappingURL=style.css.map */