:root {
  --primary: #0b5d57;
  --primary-dark: #074540;
  --accent: #d7b788;
  --bg: #f6f5f2;
  --surface: #ffffff;
  --text: #172126;
  --muted: #65747c;
  --line: #e6e2da;
  --shadow: 0 18px 44px rgba(0, 0, 0, .08);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

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

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

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

button,
input,
textarea {
  font: inherit
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto
}

.page-main {
  min-height: 60vh
}

.section {
  padding: 88px 0
}

.section.sm {
  padding: 56px 0
}

.section.alt {
  background: #f0efeb
}

.section-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 40px
}

.kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 93, 87, .08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.04em
}

.section-desc {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px
}

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

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

.btn.primary:hover {
  background: var(--primary-dark)
}

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

.btn.line {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4f3;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 24px;
}

.gnb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnb-item {
  position: relative;
}

.depth1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.depth1:hover,
.gnb-item:hover>.depth1,
.gnb-item.active>.depth1,
.gnb-item.open>.depth1 {
  color: var(--primary);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 10px 0;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
}

.gnb-item:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: #2e3b40;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a.active {
  background: #f6faf9;
  color: var(--primary);
}

.gnb-point {
  color: var(--primary) !important;
  font-weight: 800;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.hero-home,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0d1b1d
}

.hero-home .hero-bg,
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7)
}

.hero-home .hero-overlay,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 17, 19, .12), rgba(5, 17, 19, .72))
}

.hero-home {
  min-height: 80vh;
  display: flex;
  align-items: flex-end
}

.hero-home .hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 150px 0 92px
}

.hero-home h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -.05em
}

.hero-home h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: rgba(255, 255, 255, .92)
}

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

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

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, .74)
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 0 72px
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.05em
}

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

.quick-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #0d726b 100%);
  color: #fff
}

.quick-strip .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0
}

.quick-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08)
}

.quick-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .78)
}

.quick-item strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.25
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%
}

.card .media {
  aspect-ratio: 1.3/1;
  background: #ebe5db;
  overflow: hidden
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.card:hover .media img {
  transform: scale(1.04)
}

.card-body {
  padding: 24px
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 24px
}

.card-body p {
  margin: 0;
  color: var(--muted)
}

.feature-split {
  display: flex;
  flex-direction: column;
}

.feature-split.reverse .feature-copy {
  order: 2
}

.feature-split.reverse .feature-image {
  order: 1
}

.feature-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  margin-top: 15px;

}

.feature-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.14
}

.feature-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px
}

.feature-list {
  display: grid;
  gap: 14px
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px 20px;
  border-radius: 18px
}

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

.stat-box {
  background: var(--surface);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow)
}

.stat-box strong {
  display: block;
  font-size: 34px;
  color: var(--primary)
}

.stat-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px
}

.image-frame {
  background: var(--surface);
  padding: 18px;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.image-frame img {
  border-radius: 18px;
  width: 100%
}

.notice-box {
  background: var(--surface);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow)
}

.notice-box p {
  margin: 0 0 10px;
  color: var(--muted)
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: min(100%, 560px);
  background: var(--surface);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: var(--shadow)
}

.download-card strong {
  display: block;
  font-size: 20px
}

.download-card span {
  display: block;
  color: var(--muted);
  font-size: 14px
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.info-item {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line)
}

.info-item strong {
  display: block;
  font-size: 15px;
  color: var(--primary)
}

.info-item span {
  display: block;
  margin-top: 8px;
  font-size: 18px
}

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

.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 12px 18px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary)
}

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

.type-section {
  display: none;
  background: var(--surface);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow)
}

.type-section.active {
  display: block
}

.type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.type-header h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--primary)
}

.type-header p {
  margin: 6px 0 0;
  color: var(--muted)
}

.type-flex {
  display: flex;
  flex-direction: column;
}

.type-side {
  display: grid;
  gap: 20px
}

.type-side .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  color: var(--muted);
  background: #faf9f6
}

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

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #e9e2d6;
  box-shadow: var(--shadow);
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform .35s ease
}

.gallery-item:hover img {
  transform: scale(1.04)
}

.gallery-item .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: 12px;
  font-weight: 700
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px
}

.filter-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #304047;
  font-weight: 600;
  cursor: pointer
}

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

.community-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.community-card {
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.community-card img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover
}

.community-card .copy {
  padding: 22px
}

.community-card h3 {
  margin: 0 0 8px;
  font-size: 26px
}

.community-card p {
  margin: 0;
  color: var(--muted)
}

.masonry {
  columns: 3 320px;
  column-gap: 18px
}

.masonry .brick {
  break-inside: avoid;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.masonry .brick img {
  width: 100%
}

.masonry .brick .copy {
  padding: 16px 18px
}

.contact-wrap {
  display: flex;
  flex-direction: column;
}

.contact-card,
.form-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow)
}

.contact-card h3,
.form-card h3 {
  margin: 0 0 12px;
  font-size: 28px
}

.contact-card p,
.form-card p {
  margin: 0 0 16px;
  color: var(--muted)
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px
}

.contact-lines div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f6f6f4;
  border: 1px solid var(--line)
}

.contact-lines strong {
  display: block;
  font-size: 14px;
  color: var(--primary)
}

.contact-lines span {
  display: block;
  margin-top: 6px;
  font-size: 18px
}

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

#agree_privacy{
  width:4%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff
}

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

.contact-form .agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted)
}

.site-footer {
  padding: 42px 0 80px;
  background: #0f1618;
  color: rgba(255, 255, 255, .78);
  margin-top: 70px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 28px
}

.footer-logo {
  font-size: 26px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #fff
}

.site-footer p {
  margin: 0 0 8px
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.floating-call a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18)
}

.floating-call a:first-child {
  background: var(--primary);
  color: #fff
}

.floating-call a:last-child {
  background: #fff;
  color: var(--primary)
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200
}

.modal.open {
  display: flex
}

.modal img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35)
}

.modal .close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  font-size: 26px;
  cursor: pointer
}

.map-frame {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px
}

.sales-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(135deg, #0d5c57 0%, #083b38 100%);
  color: #fff;
  overflow: hidden;
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.sales-hero .inner {
  position: relative;
  z-index: 1;
}

.sales-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sales-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  font-weight: 800;
}

.sales-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.sales-section {
  padding: 80px 0;
}

.sales-section.gray {
  background: #f7f8f8;
}

.sales-head {
  margin-bottom: 30px;
}

.sales-head .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #0d5c57;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: #111;
}

.sales-head p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.sales-image-wrap {
  display: grid;
  gap: 24px;
}

.sales-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sales-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid #efefef;
}

.sales-card-header h3 {
  margin: 0;
  font-size: 22px;
  color: #111;
}

.sales-card-header p {
  margin: 6px 0 0;
  color: #666;
  font-size: 14px;
}

.sales-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 38px;
  padding: 0 14px;
  background: #0d5c57;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.sales-card .image-frame {
  padding: 24px;
  background: #fff;
}

.sales-card .image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #ececec;
}

.sales-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sales-downloads a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.sales-downloads a.primary {
  background: #0d5c57;
  color: #fff;
}

.sales-downloads a.secondary {
  background: #fff;
  color: #111;
  border: 1px solid #d9d9d9;
}

.sales-downloads a:hover {
  transform: translateY(-1px);
}

.sales-notice {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f4f6f6;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.sales-cta {
  padding: 90px 0;
  background: linear-gradient(180deg, #f7f8f8 0%, #ffffff 100%);
}

.sales-cta-box {
  padding: 38px 32px;
  border-radius: 24px;
  background: #0d5c57;
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(13, 92, 87, 0.16);
}

.sales-cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}

.sales-cta-box p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.sales-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sales-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.sales-cta-actions a.white {
  background: #fff;
  color: #0d5c57;
}

.sales-cta-actions a.line {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* 모바일 */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .gnb {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .gnb.open {
    display: block;
  }

  .gnb-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .gnb-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .depth1 {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 17px;
    text-align: left;
  }

  .depth1::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
  }

  .gnb-item.open .depth1::after {
    content: "−";
  }

  .submenu {
    position: static;
    display: none;
    min-width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 14px 14px;
    margin: 0;
  }

  .gnb-item.open .submenu {
    display: block;
  }

  .submenu a {
    padding: 8px 0;
    font-size: 14px;
  }

  .header-call {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width:720px) {
  .section {
    padding: 68px 0
  }

  .inner {
    width: min(100% - 24px, 1200px)
  }

  .logo img {
    height: 34px
  }

  .hero-home .hero-content,
  .page-hero .hero-content {
    padding: 110px 0 70px
  }

  .card-grid,
  .gallery-grid,
  .stat-grid,
  .quick-strip .inner,
  .footer-grid,
  .community-flow,
  .info-grid {
    grid-template-columns: 1fr
  }

  .download-card,
  .notice-box,
  .type-section,
  .contact-card,
  .form-card {
    padding: 22px
  }

  .tabs {
    gap: 8px;
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 10px
  }

  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px
  }

  .floating-call a {
    min-width: auto
  }

  .masonry {
    columns: 1
  }

  .sales-section {
    padding: 64px 0;
  }

  .sales-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sales-card .image-frame {
    padding: 16px;
  }

  .sales-downloads {
    flex-direction: column;
  }

  .sales-downloads a {
    width: 100%;
  }
}