/* ==========================================================================
   MOBILIFE FRONT STYLE
   ========================================================================== */

:root {
  --primary: #1f5b45;
  --primary-dark: #153f31;
  --accent: #d8943c;
  --bg: #f7f5ef;
  --card: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --line: #e5e0d8;
  --shadow: 0 12px 30px rgba(20, 40, 30, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* topbar/header */

.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 23px;
  color: var(--primary);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #3f8d68);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none !important;
}


/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: .2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}

/* hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20,63,49,.92), rgba(20,63,49,.62)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
}

.hero-inner {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 54px;
  padding: 64px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 14px;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.hero p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.stat strong { display: block; font-size: 28px; }
.stat span { color: rgba(255,255,255,.78); font-size: 14px; }

.quick-form {
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.quick-form h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -1px;
}

.quick-form p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.form-grid { display: grid; gap: 12px; }

.field label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31,91,69,.1);
}

/* sections */

section { padding: 86px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 8px;
}

.section-head h2,
.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  letter-spacing: -1.5px;
}

.section-head p,
.section-title p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* model cards */

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34,40,45,.05);
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 4 / 3;
  background: #ddd center/cover no-repeat;
  position: relative;
}

.tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(31,91,69,.92);
  color: #fff;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
}

.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 8px; font-size: 21px; }
.card-body p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.specs span {
  background: #f2f0ea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #4b5563;
}

/* process */

.process {
  background: #fff;
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

/* cases */

.gallery-filter {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-filter input,
.gallery-filter select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
}

/* designer */

.designer {
  background: linear-gradient(135deg, var(--primary), #2f7a59);
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.designer h2 {
  font-size: clamp(30px, 3vw, 46px);
  margin: 0 0 14px;
  line-height: 1.16;
}

.designer p { color: rgba(255,255,255,.82); }

.designer-preview {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  padding: 20px;
}

.floor-box {
  height: 260px;
  border: 2px dashed rgba(255,255,255,.55);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: 1fr .7fr;
  gap: 8px;
  padding: 10px;
}

.floor-box div {
  border-radius: 12px;
  background: rgba(255,255,255,.24);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}

.floor-box div:first-child { grid-row: span 2; }

/* reviews */

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

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.stars { color: var(--accent); letter-spacing: 2px; }
.review strong { display: block; margin-top: 18px; }
.review small { color: var(--muted); }
.review h3 { margin: 12px 0 8px; }

/* cta/footer */

.cta {
  background: #17251f;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin: 0 0 12px;
  letter-spacing: -1.5px;
}

.cta p {
  color: rgba(255,255,255,.76);
  margin-bottom: 28px;
}

.footer {
  background: #101815;
  color: rgba(255,255,255,.72);
  padding: 34px 0;
  font-size: 14px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* sub pages */

.sub-page { padding: 80px 0; }

.sub-title { margin-bottom: 30px; }

.sub-title h1 {
  font-size: 42px;
  margin: 0 0 10px;
}

.sub-title p { color: #6b7280; }

.detail-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 20px;
  padding: 30px;
}

.detail-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 24px;
}

.detail-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.detail-info p {
  background: #f7f5ef;
  padding: 14px;
  border-radius: 12px;
  margin: 0;
}

.detail-info strong {
  display: block;
  color: #1f5b45;
  margin-bottom: 4px;
}

.detail-content {
  padding: 24px 0;
  line-height: 1.8;
}

.search-box,
.write-form {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 30px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 180px 180px 100px;
  gap: 10px;
}

.search-box input,
.search-box select,
.write-form input,
.write-form select,
.write-form textarea {
  width: 100%;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}

.write-form { max-width: 760px; }

.write-form .field { margin-bottom: 16px; }

.write-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

/* responsive */

@media (max-width: 920px) {
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open { display: flex; }
  .nav.active { display: flex; }

  .mobile-menu-btn { display: inline-flex; }

  .hero-inner,
  .designer {
    grid-template-columns: 1fr;
  }

  .cards,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-filter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-info { grid-template-columns: 1fr; }
  .search-box { grid-template-columns: 1fr; }
  .sub-title h1 { font-size: 32px; }
}

@media (max-width: 640px) {
  .topbar .wrap { flex-direction: column; }

  .hero-inner {
    min-height: auto;
    padding: 48px 0;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-stats,
  .cards,
  .review-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  section { padding: 58px 0; }

  .quick-form,
  .designer {
    padding: 22px;
    border-radius: 22px;
  }

  .section-head {
    display: block;
  }
}


.case-gallery {
    margin-top: 40px;
}

.case-gallery h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.case-gallery-grid figure {
    margin: 0;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 16px;
    overflow: hidden;
}

.case-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.case-gallery-grid figcaption {
    padding: 12px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .case-gallery-grid {
        grid-template-columns: 1fr;
    }

    .admin-gallery-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* 기존 /css/style.css 맨 아래에 추가 */

.model-detail-hero {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(21,63,49,.96), rgba(31,91,69,.78)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: #fff;
}

.model-detail-hero-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
}

.model-detail-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.12;
    letter-spacing: -2px;
}

.model-detail-hero p {
    color: rgba(255,255,255,.82);
    font-size: 18px;
    margin: 0;
}

.model-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 30px;
}

.model-detail-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    font-weight: 800;
    font-size: 14px;
}

.model-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.model-detail-image {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;
    padding: 14px;
}

.model-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.model-detail-section {
    padding: 74px 0;
}

.model-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
}

.model-info-card {
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(34,40,45,.05);
}

.model-info-card h2 {
    margin: 0 0 20px;
    font-size: 26px;
}

.model-spec-list {
    display: grid;
    gap: 10px;
}

.model-spec-list div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: #f7f5ef;
}

.model-spec-list strong {
    color: #1f5b45;
}

.model-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.model-check-list li {
    position: relative;
    padding: 14px 14px 14px 42px;
    border-radius: 14px;
    background: #f7f5ef;
    font-weight: 800;
}

.model-check-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1f5b45;
    color: #fff;
    font-size: 12px;
}

.model-content-section {
    background: #fff;
    border-block: 1px solid #e5e0d8;
}

.model-content-box {
    background: #f7f5ef;
    border: 1px solid #e5e0d8;
    border-radius: 22px;
    padding: 30px;
    line-height: 1.9;
    color: #374151;
}

.model-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.model-option-card {
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(34,40,45,.05);
}

.model-option-card h3 {
    margin: 0 0 10px;
    color: #1f5b45;
}

.model-option-card p {
    margin: 0;
    color: #6b7280;
}

.empty-box,
.empty-text {
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 18px;
    padding: 24px;
    color: #6b7280;
}

.model-quote-cta {
    background: #17251f;
    color: #fff;
    text-align: center;
    padding: 72px 0;
}

.model-quote-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 46px);
}

.model-quote-cta p {
    color: rgba(255,255,255,.76);
    margin-bottom: 28px;
}

.selected-model-box {
    background: #f7f5ef;
    border: 1px solid #e5e0d8;
    color: #1f2933;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.selected-model-box strong {
    color: #1f5b45;
}

@media (max-width: 980px) {
    .model-detail-hero-inner,
    .model-detail-grid {
        grid-template-columns: 1fr;
    }

    .model-option-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .model-detail-hero {
        padding: 54px 0;
    }

    .model-spec-list div {
        grid-template-columns: 1fr;
    }

    .model-option-grid {
        grid-template-columns: 1fr;
    }
}


/* 기존 /css/style.css 하단에 추가 */

.design-page {
    padding: 80px 0;
    background: #f7f5ef;
}

.design-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
}

.design-head h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 52px);
}

.design-head p {
    margin: 0;
    color: #6b7280;
}

.design-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

.design-panel,
.design-result {
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(34,40,45,.05);
}

.design-panel h2,
.design-result h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.design-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.design-option-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.radio-card,
.check-card {
    cursor: pointer;
}

.radio-card input,
.check-card input {
    display: none;
}

.radio-card span,
.check-card span {
    display: block;
    border: 1px solid #e5e0d8;
    border-radius: 16px;
    padding: 18px;
    background: #f7f5ef;
}

.radio-card input:checked + span,
.check-card input:checked + span {
    border-color: #1f5b45;
    box-shadow: 0 0 0 4px rgba(31,91,69,.1);
    background: #fff;
}

.radio-card strong,
.check-card strong {
    display: block;
    color: #1f5b45;
}

.radio-card em,
.check-card em {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-style: normal;
    font-size: 13px;
}

.design-result {
    position: sticky;
    top: 96px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.result-price {
    margin: 24px 0;
    padding: 22px;
    border-radius: 18px;
    background: #17251f;
    color: #fff;
}

.result-price span {
    display: block;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}

.result-price strong {
    font-size: 32px;
}

.price-breakdown {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 14px;
    color: #4b5563;
}

.price-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.design-submit {
    width: 100%;
}

.design-notice {
    margin: 16px 0 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .design-layout {
        grid-template-columns: 1fr;
    }

    .design-result {
        position: static;
    }
}

@media (max-width: 700px) {
    .design-head {
        display: block;
    }

    .design-form-grid,
    .design-option-box {
        grid-template-columns: 1fr;
    }
}

/* MOBILIFE v2.0 Floorplan CSS - /css/style.css 하단 추가 */

.floorplan-page { padding: 80px 0; background: #f7f5ef; }
.floorplan-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.floorplan-head h1 { margin: 0 0 10px; font-size: clamp(34px, 4vw, 52px); }
.floorplan-head p { margin: 0; color: #6b7280; }
.floorplan-layout { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: start; }
.floorplan-side { display: grid; gap: 14px; }
.floor-card { background: #fff; border: 1px solid #e5e0d8; border-radius: 20px; padding: 20px; box-shadow: 0 8px 24px rgba(34,40,45,.05); }
.floor-card h2 { margin: 0 0 16px; font-size: 20px; }
.floor-card label { display: block; margin: 12px 0 6px; font-weight: 800; }
.floor-card input, .floor-card select, .floor-card textarea { width: 100%; border: 1px solid #ddd; border-radius: 12px; padding: 12px; }
.size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.floor-area-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.floor-area-box div { background: #f7f5ef; border-radius: 14px; padding: 14px; }
.floor-area-box strong { display: block; color: #1f5b45; font-size: 20px; }
.floor-area-box span { color: #6b7280; font-size: 13px; }
.floor-btn { width: 100%; height: 44px; border: none; border-radius: 12px; background: #1f5b45; color: #fff; font-weight: 900; cursor: pointer; }
.floor-btn.gray { background: #6b7280; }
.floor-btn.primary { background: #1f5b45; }
.element-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.element-grid button { height: 40px; border: 1px solid #e5e0d8; border-radius: 12px; background: #f7f5ef; cursor: pointer; font-weight: 800; }
.element-grid button:hover { background: #eaf3ef; border-color: #1f5b45; }
.floor-help { margin: 12px 0 0; color: #6b7280; line-height: 1.5; font-size: 13px; }
.floor-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
.floorplan-main { background: #fff; border: 1px solid #e5e0d8; border-radius: 22px; overflow: hidden; box-shadow: 0 8px 24px rgba(34,40,45,.05); }
.floor-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid #e5e0d8; background: #fff; }
.floor-toolbar strong { color: #1f5b45; }
.floor-toolbar span { color: #6b7280; font-size: 13px; }
.floor-canvas-wrap { overflow: auto; padding: 30px; background: linear-gradient(90deg, rgba(31,91,69,.08) 1px, transparent 1px), linear-gradient(rgba(31,91,69,.08) 1px, transparent 1px); background-size: 20px 20px; }
.floor-canvas { 
	position: relative;
    width: 480px;
    height: 240px;
    background: #fff;
    border: 4px solid #17251f;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    flex: 0 0 auto;
}
.floor-item { position: absolute; left: 0; top: 0; display: grid; place-items: center; border: 2px solid #1f5b45; background: #eaf3ef; color: #17352a; font-size: 13px; font-weight: 900; cursor: move; user-select: none; border-radius: 8px; }
.floor-item.selected { outline: 3px solid rgba(37,99,235,.35); z-index: 10; }
.floor-item-door { background: #fde68a; border-color: #d97706; }
.floor-item-window { background: #dbeafe; border-color: #2563eb; }
.floor-item-toilet { background: #fce7f3; border-color: #db2777; }
.floor-item-sink { background: #ccfbf1; border-color: #0f766e; }
.floor-item-bed { background: #ede9fe; border-color: #7c3aed; }
.floor-item-desk { background: #e5e7eb; border-color: #4b5563; }
.floor-item-partition { background: #111827; border-color: #111827; color: #fff; }
.floor-item-deck { background: #fed7aa; border-color: #c2410c; }
@media (max-width: 1000px) { .floorplan-layout { grid-template-columns: 1fr; } .floorplan-head { display: block; } .floorplan-head .btn { margin-top: 14px; } }


@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }

    .nav.active {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }
}

@media (max-width: 920px) {
    .nav.open,
    .nav.active {
        display: flex !important;
    }
}

/* MOBILIFE v2.1 Floorplan Upgrade CSS - /css/style.css 하단 추가 */

@media (min-width: 1001px) {
   
     .floorplan-layout {
        align-items: start;
    }

    .floorplan-main {
        position: sticky;
        top: 90px;
        align-self: start;
        z-index: 10;
    }

    .floorplan-sticky {
        position: static;
    }

    .floor-canvas-wrap {
        max-height: calc(100vh - 170px);
        overflow: auto;
    }
}

.floor-control-card {
    border-color: rgba(31,91,69,.28);
    box-shadow: 0 8px 24px rgba(31,91,69,.08);
}

.selected-name {
    background: #eaf3ef;
    color: #1f5b45;
    border-radius: 12px;
    padding: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.floor-btn.danger {
    background: #dc2626;
}

.floor-btn.danger:hover {
    background: #b91c1c;
}

.floor-item {
    transform-origin: center center;
}

.floor-item span {
    pointer-events: none;
    text-align: center;
    line-height: 1.2;
}

.floor-item.selected {
    outline: 3px solid rgba(37,99,235,.42);
    box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    z-index: 20;
}

@media (max-width: 1000px) {
    .floorplan-sticky {
        position: static;
    }

    .floor-canvas-wrap {
        max-height: none;
    }
}

/* PC: 메뉴 버튼 숨김 */
.mobile-menu-btn {
    display: none !important;
}

/* 모바일/태블릿: 메뉴 버튼 표시 */
@media (max-width: 920px) {
    .mobile-menu-btn {
        display: inline-flex !important;
    }

    .nav.open,
    .nav.active {
        display: flex !important;
    }
}

.floor-canvas-wrap {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
}

.floor-canvas {
    touch-action: pan-x pan-y;
}

.floor-item {
    touch-action: none;
}


/* 모바일 평면도 설계기 레이아웃 최적화 */
@media (max-width: 1000px) {
    .floorplan-layout {
        display: flex;
        flex-direction: column;
    }

     /* 규격 */
    .floorplan-side .floor-card:nth-child(2){
        order:1;
    }

    /* 평면도 미리보기 */
    .floorplan-main{
        order:2;
        width:100%;
        margin-bottom:15px;
    }

    /* 배치요소 */
    .floorplan-side .floor-card:nth-child(3){
        order:3;
    }

    /* 선택요소 조정 */
    .floorplan-side .floor-card:nth-child(4){
        order:4;
    }

    /* 고객정보 */
    .floorplan-side .floor-card:nth-child(1){
        order:5;
    }

    /* 요청사항 */
    .floorplan-side .floor-card:nth-child(5){
        order:6;
    }

    .floor-canvas-wrap{
        max-height:55vh;
        overflow:auto;
    }

    .floorplan-sticky{
        position:static;
    }

    .floor-card {
        padding: 18px;
    }

    .element-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .element-grid button {
        height: 42px;
        font-size: 13px;
        padding: 0 4px;
    }
}

@media (max-width: 640px) {
    .floorplan-page {
        padding: 30px 0 50px;
    }

    .floorplan-head h1 {
        font-size: 34px;
    }

    .floorplan-head p {
        font-size: 14px;
    }

    .floorplan-main {
        margin-bottom: 14px;
    }

    .floor-toolbar {
        padding: 12px 14px;
    }

    .floor-toolbar span {
        font-size: 12px;
    }

    .floor-canvas-wrap {
        max-height: 48vh;
        padding: 14px;
    }

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

    .size-grid,
    .floor-area-box {
        grid-template-columns: 1fr 1fr;
    }
}


/* MOBILIFE Floorplan Mobile UX Patch - /css/style.css 하단 추가 */

@media (max-width: 1000px) {
    .floorplan-layout {
        display: flex;
        flex-direction: column;
    }

    .floorplan-side {
        display: flex;
        flex-direction: column;
    }

    .floorplan-side .floor-card:nth-child(2) {
        order: 1; /* 규격 */
    }

    .floorplan-main {
        order: 2; /* 평면도 미리보기 */
        width: 100%;
        margin-bottom: 15px;
    }

    .floorplan-side .floor-card:nth-child(3) {
        order: 3; /* 배치요소 */
    }

    .floorplan-side .floor-card:nth-child(4) {
        order: 4; /* 선택요소 조정 */
    }

    .floorplan-side .floor-card:nth-child(1) {
        order: 5; /* 고객정보 */
    }

    .floorplan-side .floor-card:nth-child(5) {
        order: 6; /* 요청사항 */
    }

    .floorplan-sticky {
        position: static;
    }

    .floor-canvas-wrap {
        max-height: 55vh;
        overflow: auto;
        padding: 14px;
    }
}

.mobile-selected-info {
    display: none;
}

@media (max-width: 1000px) {
    .mobile-selected-info {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        padding: 12px 14px;
        border-radius: 12px;
        background: #1f5b45;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-selected-info strong {
        color: #d6f5e8;
        white-space: nowrap;
    }

    #mobileSelectedName {
        flex: 1;
        word-break: break-all;
    }

    .floor-canvas-wrap {
		overflow: auto !important;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x pan-y;
	}

	.floor-canvas {
		touch-action: pan-x pan-y;
	}

	.floor-item {
		touch-action: none;
	}
}

@media (max-width: 640px) {
    .element-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floor-toolbar {
        padding: 12px 14px;
    }

    .floor-toolbar span {
        font-size: 12px;
    }
}
/* 모바일 평면도 설계기 최종 레이아웃 보정 */
@media (max-width: 1000px) {
    .floorplan-layout {
        display: flex !important;
        flex-direction: column !important;
    }

    .floorplan-side {
        display: contents !important;
    }

    /* 1. 규격 */
    .floorplan-side .floor-card:nth-child(2) {
        order: 1 !important;
    }

    /* 2. 평면도 미리보기 */
    .floorplan-main {
        order: 2 !important;
        width: 100% !important;
        margin-bottom: 15px;
    }

    /* 3. 배치요소 */
    .floorplan-side .floor-card:nth-child(3) {
        order: 3 !important;
    }

    /* 4. 선택요소 조정 */
    .floorplan-side .floor-card:nth-child(4) {
        order: 4 !important;
    }

    /* 5. 고객정보 */
    .floorplan-side .floor-card:nth-child(1) {
        order: 5 !important;
    }

    /* 6. 요청사항 */
    .floorplan-side .floor-card:nth-child(5) {
        order: 6 !important;
    }
}

/* MOBILIFE v2.2 Floorplan Summary/Elements CSS - /css/style.css 하단 추가 */

.floor-preview-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border-bottom: 1px solid #e5e0d8;
}

.floor-preview-summary div {
    background: #f7f5ef;
    border-radius: 12px;
    padding: 10px 12px;
}

.floor-preview-summary strong {
    display: block;
    color: #1f5b45;
    font-size: 13px;
    margin-bottom: 3px;
}

.floor-preview-summary span {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.floor-element-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    background: #fff;
    border-bottom: 1px solid #e5e0d8;
}

.floor-element-counts span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: #eaf3ef;
    color: #1f5b45;
    font-size: 12px;
    font-weight: 800;
}

.floor-element-counts span strong {
    color: #17352a;
}

.element-group-title {
    margin: 14px 0 8px;
    color: #1f5b45;
    font-size: 15px;
}

.element-group-title:first-child {
    margin-top: 0;
}

.element-group-list .element-grid {
    margin-bottom: 8px;
}

/* 추가 요소 기본 스타일 */
.floor-item-electric,
.floor-item-vent,
.floor-item-waterproof-outlet,
.floor-item-aircon,
.floor-item-deco-tile {
    border-style: solid;
}

@media (max-width: 1000px) {
    .floor-preview-summary {
        grid-template-columns: 1fr;
    }

    .floor-preview-summary span {
        font-size: 12px;
    }

    .floor-element-counts {
        max-height: 96px;
        overflow: auto;
    }
}


.floor-canvas-outer {
    position: relative;
    background:
        linear-gradient(90deg, rgba(31,91,69,.08) 1px, transparent 1px),
        linear-gradient(rgba(31,91,69,.08) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 2px dashed #9ca3af;
}

.floor-room-box {
    position: absolute;
    left: 100px;
    top: 80px;
    background: #fff;
    border: 4px solid #17251f;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    z-index: 1;
}

.floor-item {
    z-index: 5;
}

.floor-item-roof-extra {
    background: #e5e7eb;
    border-style: dashed;
}


/* ==========================================================================
   MOBILIFE COMPANY INTRO - FINAL
   ========================================================================== */


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

.company-hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            90deg,
            rgba(14,55,42,.96),
            rgba(31,91,69,.68)
        ),
        url('../img/company/company-banner.png')
        center / cover no-repeat;

    color: #fff;
}

.company-hero-inner {
    min-height: 410px;

    display: flex;
    align-items: center;
}

.company-hero-copy {
    max-width: 790px;
}

.company-hero-copy h1 {
    margin: 0 0 22px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.company-hero-copy p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.86);

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

.company-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}

.company-btn-light {
    background: #fff;

    color: var(--primary);
}

.company-btn-outline {
    border: 1px solid var(--line);

    background: #fff;

    color: var(--primary);
}


/* ==================================
   INTRO
================================== */

.company-intro-section {
    padding: 90px 0;
}

.company-title-row {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 34px;
}

.company-title-row h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.18;

    letter-spacing: -1.5px;
}

.company-title-row > p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;
}


/* ==================================
   BRAND CARD
================================== */

.company-brand-card {
    position: relative;

    display: grid;

    grid-template-columns: 360px 1fr;

    gap: 42px;

    align-items: center;

    margin-bottom: 34px;

    padding: 34px 40px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3f7f4
        );

    box-shadow:
        0 10px 32px rgba(34,40,45,.06);
}

.company-brand-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(31,91,69,.06);
}

.company-brand-logo {
    position: relative;

    z-index: 2;

    display: flex;

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

    min-height: 210px;

    padding: 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #e8ece9;
}

.company-brand-logo img {
    display: block;

    width: 100%;

    max-width: 300px;

    height: auto;

    margin: 0 auto;
}

.company-brand-copy {
    position: relative;

    z-index: 2;
}

.company-brand-label {
    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 0 11px;

    margin-bottom: 13px;

    border-radius: 999px;

    background: #eaf3ef;

    color: var(--primary);

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

    letter-spacing: .1em;
}

.company-brand-copy h3 {
    margin: 0 0 14px;

    color: #18251f;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.25;

    letter-spacing: -1.3px;
}

.company-brand-copy p {
    max-width: 680px;

    margin: 0;

    color: var(--muted);

    line-height: 1.85;

    font-size: 15px;
}

.company-brand-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.company-brand-tags span {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 0 11px;

    border-radius: 999px;

    border: 1px solid #dae4df;

    background: #fff;

    color: #355448;

    font-size: 12px;

    font-weight: 800;
}


/* ==================================
   COMPANY VALUES
================================== */

.company-value-grid {
    display: grid;

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

    gap: 16px;
}

.company-value-grid article {
    position: relative;

    min-height: 220px;

    padding: 25px;

    border: 1px solid var(--line);

    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 8px 24px rgba(34,40,45,.05);
}

.company-value-grid article > span {
    display: block;

    margin-bottom: 35px;

    color: var(--accent);

    font-size: 14px;

    font-weight: 900;
}

.company-value-grid strong {
    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 20px;
}

.company-value-grid p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* ==================================
   DOMESTIC / QUALITY
================================== */

.company-domestic-section {
    padding: 90px 0;

    background: #fff;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);
}

.company-domestic-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.company-domestic-image {
    padding: 18px;

    border: 1px solid var(--line);

    border-radius: 26px;

    background: var(--bg);
}

.company-domestic-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 18px;
}

.company-domestic-copy h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.18;

    letter-spacing: -1.5px;
}

.company-domestic-copy > p {
    margin: 20px 0 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;
}

.company-domestic-copy ul {
    display: grid;

    gap: 12px;

    margin: 28px 0 0;

    padding: 0;

    list-style: none;
}

.company-domestic-copy li {
    position: relative;

    padding: 14px 16px 14px 46px;

    border-radius: 14px;

    background: var(--bg);

    font-weight: 700;
}

.company-domestic-copy li::before {
    content: "✓";

    position: absolute;

    left: 15px;

    top: 13px;

    width: 23px;
    height: 23px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--primary);

    color: #fff;

    font-size: 12px;
}


/* ==================================
   PRODUCT SECTION
================================== */

.company-product-section {
    padding: 64px 0 76px;
}

.company-product-section .wrap {
    width: min(
        1180px,
        calc(100% - 32px)
    );
}

.company-product-section .section-head {
    margin-bottom: 22px;
}


/* ==================================
   PRODUCT MAIN IMAGE
================================== */

.company-product-main {
    width: 100%;

    max-width: 920px;

    margin: 0 auto 30px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 10px 28px rgba(34,40,45,.07);
}

.company-product-main img {
    display: block;

    width: 100%;

    height: auto !important;

    max-height: none !important;

    object-fit: contain !important;

    object-position: center;
}


/* ==================================
   PRODUCT DETAIL GALLERY
================================== */

.company-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    align-items: start;
}

.company-feature-grid figure {
    margin: 0;

    padding: 0;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 6px 18px rgba(0,0,0,.04);
}

.company-feature-grid img {
    display: block;

    width: 100%;

    height: auto !important;

    max-height: none !important;

    object-fit: contain !important;

    object-position: top center;
}


/* ==================================
   COMPANY INFO
================================== */

.company-info-section {
    padding: 78px 0;

    background: #fff;

    border-top: 1px solid var(--line);
}

.company-info-grid {
    display: grid;

    grid-template-columns:
        420px 1fr;

    gap: 20px;
}

.company-info-card,
.company-map-card {
    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 8px 24px rgba(34,40,45,.05);
}

.company-info-card {
    padding: 30px;
}

.company-info-card h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.18;

    letter-spacing: -1.5px;
}

.company-info-card dl {
    margin: 30px 0 0;
}

.company-info-card dl > div {
    display: grid;

    grid-template-columns:
        90px 1fr;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #eee;
}

.company-info-card dt {
    color: var(--muted);

    font-weight: 700;
}

.company-info-card dd {
    margin: 0;

    font-weight: 800;
}

.company-info-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


/* ==================================
   MAP
================================== */

.company-map-card iframe {
    display: block;

    width: 100%;

    height: 100%;

    min-height: 470px;

    border: 0;
}


/* ==================================
   CTA
================================== */

.company-cta {
    padding: 70px 0;

    background: #17251f;

    color: #fff;
}

.company-cta .wrap {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.company-cta h2 {
    margin: 0 0 8px;

    font-size:
        clamp(30px, 4vw, 46px);
}

.company-cta p {
    margin: 0;

    color:
        rgba(255,255,255,.72);
}

.company-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex: 0 0 auto;
}


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

@media (max-width: 980px) {

    .company-hero-inner,
    .company-title-row,
    .company-domestic-grid,
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .company-value-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .company-brand-card {
        grid-template-columns:
            280px 1fr;

        gap: 28px;

        padding: 28px;
    }

    .company-brand-logo {
        min-height: 180px;
    }

    .company-product-main {
        max-width: 760px;
    }

    .company-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .company-feature-grid img {
        width: 100%;

        height: auto !important;

        max-height: none !important;

        object-fit: contain !important;
    }

    .company-info-grid {
        gap: 16px;
    }

    .company-map-card iframe {
        min-height: 430px;
    }

    .company-cta .wrap {
        display: block;
    }

    .company-cta-actions {
        margin-top: 24px;
    }
}


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

@media (max-width: 640px) {

    .company-hero {
        padding: 55px 0;
    }

    .company-hero-inner {
        min-height: auto;
    }

    .company-hero-copy h1 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .company-hero-copy p {
        font-size: 15px;
    }

    .company-intro-section,
    .company-domestic-section,
    .company-product-section,
    .company-info-section {
        padding: 58px 0;
    }

    .company-title-row {
        gap: 20px;
    }

    .company-brand-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 20px;

        margin-bottom: 24px;

        border-radius: 18px;
    }

    .company-brand-logo {
        min-height: auto;

        padding: 22px;
    }

    .company-brand-logo img {
        max-width: 260px;
    }

    .company-brand-copy h3 {
        font-size: 28px;
    }

    .company-value-grid,
    .company-feature-grid {
        grid-template-columns: 1fr;
    }

    .company-value-grid article {
        min-height: auto;
    }

    .company-product-main {
        width: 100%;

        max-width: none;

        margin-bottom: 18px;

        border-radius: 16px;
    }

    .company-product-main img {
        display: block;

        width: 100%;

        height: auto !important;

        max-height: none !important;

        object-fit: contain !important;
    }

    .company-feature-grid {
        gap: 12px;
    }

    .company-feature-grid figure {
        border-radius: 14px;
    }

    .company-feature-grid img {
        display: block;

        width: 100%;

        height: auto !important;

        max-height: none !important;

        object-fit: contain !important;

        object-position: top center;
    }

    .company-info-section {
        padding: 54px 0;
    }

    .company-info-card {
        padding: 22px;
    }

    .company-info-card dl > div {
        grid-template-columns:
            70px 1fr;
    }

    .company-map-card iframe {
        min-height: 350px;
    }

    .company-cta {
        padding: 54px 0;
    }

    .company-cta-actions {
        display: grid;

        grid-template-columns: 1fr;
    }
}