:root {
  --blue-900: #07244a;
  --blue-800: #0c356a;
  --blue-700: #12559b;
  --blue-600: #1670c6;
  --teal-600: #168a9a;
  --amber-500: #c58b2a;
  --gray-950: #121722;
  --gray-800: #303947;
  --gray-600: #617083;
  --gray-200: #e3e8ef;
  --gray-100: #f3f6f9;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(12, 33, 66, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-950);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Malgun Gothic",
    Arial,
    sans-serif;
  line-height: 1.65;
  background: var(--white);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--gray-950);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(7, 36, 74, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.75;
}

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

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
}

.site-nav .nav-cta::after {
  content: none;
}

.nav-dropdown {
  position: relative;
}

.intranet-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  color: currentColor;
  font-weight: 800;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.38;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.site-header.is-scrolled .intranet-toggle,
.site-header.is-open .intranet-toggle {
  background: transparent;
}

.intranet-toggle:hover,
.nav-dropdown.is-open .intranet-toggle,
.intranet-toggle:focus-visible {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.12);
}

.intranet-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intranet-toggle::before,
.intranet-toggle::after {
  position: absolute;
  left: 50%;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  content: "";
}

.intranet-toggle::before {
  top: 7px;
  width: 4px;
  height: 4px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.intranet-toggle::after {
  top: 13px;
  width: 16px;
  height: 2px;
  opacity: 0.45;
}

.intranet-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 210px;
  padding: 8px;
  color: var(--gray-950);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .intranet-menu,
.nav-dropdown.is-open .intranet-menu,
.nav-dropdown:focus-within .intranet-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.intranet-menu a {
  padding: 11px 12px;
  color: var(--gray-800);
  border-radius: 6px;
}

.intranet-menu a:hover {
  color: var(--blue-900);
  background: #e6f1fb;
}

.intranet-menu a::after {
  content: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  padding: 170px clamp(20px, 5vw, 72px) 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 36, 74, 0.96), rgba(7, 36, 74, 0.74) 48%, rgba(18, 85, 155, 0.44)),
    url("../images/portfolio/hero-heavy-packaging.jpg") center / cover no-repeat,
    linear-gradient(135deg, #183d64, #627887);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  right: -4vw;
  bottom: 0;
  width: 58vw;
  height: 68%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  clip-path: polygon(18% 0, 100% 10%, 92% 100%, 0 100%);
  opacity: 0.45;
}

.crate,
.steel-line {
  position: absolute;
  right: clamp(10px, 8vw, 130px);
  bottom: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    repeating-linear-gradient(90deg, rgba(197, 139, 42, 0.26) 0 22px, rgba(91, 67, 37, 0.28) 22px 44px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.24);
}

.crate-one {
  width: min(44vw, 560px);
  height: 220px;
  transform: skewY(-5deg);
}

.crate-two {
  right: clamp(180px, 28vw, 430px);
  bottom: 72px;
  width: min(28vw, 330px);
  height: 145px;
  transform: skewY(5deg);
}

.steel-line {
  right: 5vw;
  bottom: 330px;
  width: min(34vw, 410px);
  height: 28px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(120, 166, 194, 0.55), rgba(255,255,255,0.1));
  transform: rotate(-12deg);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9fdae3;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-stats,
.contact-layout,
.material-layout,
.quality-band {
  display: grid;
  gap: 18px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(7, 36, 74, 0.18);
}

.btn.primary {
  color: var(--white);
  background: var(--blue-700);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin-top: 82px;
  color: var(--white);
}

.hero-stats div {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 104px clamp(20px, 5vw, 72px);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

#about .section-heading::after {
  display: block;
  width: 100%;
  min-height: 250px;
  margin-top: 28px;
  background:
    linear-gradient(180deg, rgba(7, 36, 74, 0.02), rgba(7, 36, 74, 0.18)),
    url("../images/portfolio/large-wood-box-yard.jpg") center / cover no-repeat;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  content: "";
}

.section-heading.wide {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--gray-600);
  font-size: 1.08rem;
}

.section-body p {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.quality-list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-800);
  font-weight: 700;
}

.check-list li::before,
.quality-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal-600);
  border-radius: 50%;
  content: "";
}

.tinted {
  background: var(--gray-100);
}

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

.service-card,
.box-list article,
.wood-panel article,
.heat-panel,
.company-info,
.quote-form,
.portfolio-grid figure {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 36, 74, 0.06);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
}

.service-card::before {
  display: block;
  width: calc(100% + 48px);
  height: 118px;
  margin: -24px -24px 22px;
  background: var(--gray-200) center / cover no-repeat;
  content: "";
}

.service-card:nth-child(1)::before {
  background-image: url("../images/portfolio/heavy-equipment.jpg");
}

.service-card:nth-child(2)::before {
  background-image: url("../images/portfolio/plant-equipment.jpg");
}

.service-card:nth-child(3)::before {
  background-image: url("../images/portfolio/closed-wood-box.jpg");
}

.service-card:nth-child(4)::before {
  background-image: url("../images/portfolio/special-wrapped.jpg");
}

.service-card:nth-child(5)::before {
  background-image: url("../images/portfolio/lumber-yard.jpg");
}

.service-card:nth-child(6)::before {
  background-image: url("../images/portfolio/heat-treatment-wood.jpg");
}

.service-card:nth-child(7)::before {
  background-image: url("../images/portfolio/forklift-loading.jpg");
}

.service-card:nth-child(8)::before {
  background-image: url("../images/portfolio/skid-packaging.jpg");
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--blue-700);
  font-weight: 900;
  background: #e6f1fb;
  border-radius: 6px;
}

.service-card p,
.box-list p,
.wood-panel p,
.heat-panel p,
.portfolio-grid figcaption,
.company-info dd {
  margin: 0;
  color: var(--gray-600);
}

.box-list {
  display: grid;
  gap: 16px;
}

.box-list article {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.box-list article::before {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gray-200) center / cover no-repeat;
  border-radius: 6px;
  content: "";
}

.box-list article:nth-child(1)::before {
  background-image: url("../images/portfolio/closed-wood-box.jpg");
}

.box-list article:nth-child(2)::before {
  background-image: url("../images/portfolio/open-wood-box.jpg");
}

.box-list article:nth-child(3)::before {
  background-image: url("../images/portfolio/plywood-box.jpg");
}

.box-list article:nth-child(4)::before {
  background-image: url("../images/portfolio/skid-packaging.jpg");
}

.box-list article:nth-child(5)::before {
  background-image: url("../images/portfolio/forklift-loading.jpg");
}

.box-list h3 span {
  display: block;
  margin-top: 4px;
  color: var(--amber-500);
  font-size: 0.88rem;
}

.design-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 36, 74, 0.94), rgba(18, 85, 155, 0.88)),
    linear-gradient(90deg, #1a344c, #194e67);
}

.design-band h2 {
  color: var(--white);
}

.design-band .eyebrow {
  color: #9fdae3;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1080px;
  margin-top: 36px;
}

.pill-grid span {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.material-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.wood-panel {
  display: grid;
  gap: 16px;
}

.wood-panel article,
.heat-panel {
  padding: 26px;
}

.wood-panel article {
  overflow: hidden;
}

.wood-panel article::before {
  display: block;
  width: calc(100% + 52px);
  height: 130px;
  margin: -26px -26px 22px;
  background: var(--gray-200) center / cover no-repeat;
  content: "";
}

.wood-panel article:nth-child(1)::before {
  background-image: url("../images/portfolio/raw-logs.jpg");
}

.wood-panel article:nth-child(2)::before {
  background-image: url("../images/portfolio/lumber-yard.jpg");
}

.wood-panel article:nth-child(3)::before {
  background-image: url("../images/portfolio/wood-stock.jpg");
}

.heat-panel {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 53, 106, 0.94), rgba(22, 112, 198, 0.84)),
    url("../images/portfolio/heat-treatment-wood.jpg") center / cover no-repeat,
    var(--blue-800);
}

.heat-panel h3 {
  color: var(--white);
}

.heat-panel p,
.heat-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.heat-panel ol,
.process-list,
.timeline,
.quality-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.heat-panel li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
}

.heat-panel li::before {
  position: absolute;
  left: 0;
  color: #9fdae3;
  content: "•";
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-list li {
  min-height: 106px;
  padding: 20px;
  color: var(--gray-800);
  font-weight: 800;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 0.84rem;
}

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

.portfolio-grid figure {
  margin: 0;
  overflow: hidden;
}

.portfolio-grid img {
  width: 100%;
  min-height: 210px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-grid figcaption {
  padding: 16px 18px;
  font-weight: 800;
}

.history-section {
  background: linear-gradient(180deg, var(--white), #f8fafc);
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.timeline time {
  color: var(--blue-700);
  font-weight: 900;
}

.quality-band {
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 36, 74, 0.95), rgba(22, 138, 154, 0.74)),
    var(--blue-900);
}

.quality-band h2 {
  color: var(--white);
}

.quality-band .eyebrow {
  color: #9fdae3;
}

.quality-band p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-list li {
  color: rgba(255, 255, 255, 0.9);
}

.contact-section {
  background: #f8fafc;
}

.contact-layout {
  grid-template-columns: minmax(320px, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--gray-950);
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

.file-box input {
  padding: 9px;
}

.company-info {
  padding: 28px;
}

.company-info img {
  width: min(260px, 100%);
  margin-bottom: 28px;
}

.company-info dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.company-info dt {
  color: var(--blue-700);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-info dd {
  margin-top: 4px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--gray-950);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer strong {
  color: var(--white);
}

.site-footer address,
.site-footer p {
  margin: 0;
  font-style: normal;
}

@media (max-width: 1100px) {
  .card-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding: 10px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--gray-950);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .intranet-toggle {
    display: block;
    width: 30px;
    margin: 8px auto 0;
    color: var(--gray-600);
    background: transparent;
    border-color: currentColor;
  }

  .site-header.is-scrolled .intranet-toggle,
  .site-header.is-open .intranet-toggle {
    color: var(--gray-600);
    background: transparent;
    border-color: currentColor;
  }

  .intranet-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .intranet-menu {
    display: grid;
  }

  .hero {
    min-height: 720px;
    padding-top: 130px;
  }

  .hero-grid,
  .crate-two,
  .steel-line {
    display: none;
  }

  .crate-one {
    right: -60px;
    bottom: 110px;
    width: 420px;
    opacity: 0.42;
  }

  .hero-actions,
  .hero-stats,
  .section-split,
  .material-layout,
  .quality-band,
  .contact-layout,
  .box-list article {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .check-list,
  .quality-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .box-list article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 2.75rem;
  }

  .hero-actions,
  .card-grid,
  .portfolio-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-stats div,
  .service-card {
    min-height: auto;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quote-form,
  .company-info {
    padding: 20px;
  }
}
