﻿:root {
  --ink: #14212b;
  --muted: #5c6b75;
  --line: #d9e3e8;
  --panel: #f5f8fa;
  --white: #ffffff;
  --blue: #145f9f;
  --blue-dark: #0d3f70;
  --green: #2c8f6b;
  --amber: #b9822b;
  --shadow: 0 20px 50px rgba(20, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

[id] {
  scroll-margin-top: 96px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #30414d;
}

.nav li {
  list-style: none;
}

.nav ul {
  margin: 0;
  padding: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 64px) 36px;
  background: linear-gradient(180deg, #eef5f8 0%, #ffffff 86%);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  color: #344956;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
}

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

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.card-link {
  width: 100%;
  margin-top: auto;
}

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

.proof-strip span {
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: #37505f;
  font-size: 13px;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 68px clamp(18px, 4vw, 64px);
}

.section.compact {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section.compact.faq-page-hero {
  padding-bottom: 12px;
}

.section.compact.faq-index-hero {
  text-align: center;
}

.faq-index-hero .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.section.compact.faq-page-hero,
.faq-post-detail {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.faq-page-hero .section-heading,
.faq-post-detail .section-heading {
  max-width: 1280px;
}

.faq-index-hero h1,
.faq-page-hero h1,
.faq-post-detail h1 {
  max-width: 1280px;
  font-size: clamp(34px, 2.9vw, 42px);
  line-height: 1.08;
}

.faq-index-hero .wide-text {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.faq-page-hero .wide-text,
.faq-post-detail .wide-text {
  max-width: 1280px;
  margin-right: 0;
  margin-left: 0;
}

.faq-page-hero .section-button,
.faq-post-detail .section-button {
  margin-right: 0;
  margin-left: 0;
}

.faq-list-section {
  padding-top: 8px;
}

.product-hero .section-heading {
  max-width: 100%;
}

.product-hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(36px, 4.6vw, 58px);
}

.product-hero .wide-text {
  max-width: none;
}

.section.compact.product-hero {
  padding-bottom: 4px;
}

.product-hero ~ .section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.product-hero .section-heading {
  margin-bottom: 18px;
}

.product-hero .hero-actions {
  margin: 22px 0 8px;
}

.brand-page-section .section-heading {
  max-width: none;
}

.brand-page-section .wide-text {
  max-width: none;
}

.brand-page-section h1,
.brand-page-section h2 {
  max-width: none;
  font-size: clamp(30px, 3vw, 42px);
}

.section.compact.brand-page-hero {
  padding-bottom: 4px;
}

.brand-page-hero + .brand-page-section {
  padding-top: 18px;
}

.brand-page-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-tight-bottom {
  padding-bottom: 24px;
}

.section-tight-top {
  padding-top: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section > .section-heading,
.brand-page-section .section-heading,
.split > div > .section-heading {
  max-width: none;
}

.heading-wide {
  max-width: 1600px;
}

.wide-text {
  max-width: 1000px;
  color: var(--muted);
  font-size: 18px;
}

.text-wide {
  max-width: none;
}

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

.article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.article-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-card h3 {
  margin-bottom: 22px;
}

.article-grid article,
.article-grid a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 20px;
  background: var(--panel);
}

.article-grid h3 {
  display: -webkit-box;
  min-height: 66px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 20px;
  line-height: 1.1;
}

.article-grid p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.visual-proof-section {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #fbfdfe;
}

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

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.photo-card h3,
.photo-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.photo-card h3 {
  margin-top: 18px;
}

.photo-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 172px;
  padding: 18px;
  color: #28536b;
  background:
    linear-gradient(135deg, rgba(20, 95, 159, 0.12), rgba(44, 143, 107, 0.12)),
    #eef5f8;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-align: center;
}

.gallery-section {
  margin-top: 34px;
}

.gallery-section:first-of-type {
  margin-top: 0;
}

.gallery-heading {
  margin-bottom: 16px;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.4vw, 34px);
}

.news-list {
  display: grid;
  gap: 22px;
}

.news-index-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.news-index-item {
  display: grid;
  grid-template-columns: 120px minmax(240px, 0.45fr) minmax(0, 0.55fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.news-index-item:last-child {
  border-bottom: 0;
}

.news-index-item strong {
  color: var(--ink);
  font-size: 18px;
}

.news-index-item span:last-child,
.news-date {
  color: var(--muted);
}

.news-date {
  font-weight: 700;
}

.pagination-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
}

.shipment-news-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.shipment-news-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.shipment-news-card > div {
  padding: 24px 24px 24px 0;
}

.shipment-news-card h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.news-meta {
  margin-top: 18px;
}

.news-meta div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.shipment-article {
  max-width: 1100px;
  margin: 0 auto;
}

.shipment-article h1 {
  font-size: clamp(34px, 4vw, 54px);
}

.shipment-article > img {
  display: block;
  width: 100%;
  max-height: 620px;
  margin: 28px 0;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.shipment-content p,
.shipment-content ul,
.shipment-content ol {
  color: var(--muted);
  font-size: 18px;
}

.shipment-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--blue-dark);
  background: #e7f1f8;
  font-size: 13px;
  font-weight: 700;
}

.product-card p,
.article-grid p,
.split p,
.capability-list span,
.template-table span,
.inquiry p,
.site-footer p {
  color: var(--muted);
}

dl {
  margin: 20px 0 0;
}

.product-card dl {
  margin-bottom: 18px;
}

dl div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--ink);
  font-weight: 700;
}

dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 1fr);
  gap: 42px;
  background: var(--panel);
}

.product-faq-section {
  grid-template-columns: minmax(240px, 0.25fr) minmax(0, 1fr);
  gap: 34px;
}

.product-faq-section .article-grid {
  gap: 16px;
}

.product-faq-section .article-grid a {
  min-height: 170px;
}

.split + .split {
  padding-top: 0;
}

.split > .button {
  align-self: start;
}

.section-button {
  margin-top: 12px;
}

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

.capability-list div,
.capability-list a {
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.capability-list a:hover {
  border-color: #9fb9cf;
}

.capability-list strong,
.capability-list span {
  display: block;
}

.template-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.template-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.template-table div:last-child {
  border-bottom: 0;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  margin: 54px clamp(18px, 4vw, 64px) 72px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: #12364f;
}

.inquiry .eyebrow,
.inquiry p {
  color: #b7d9e8;
}

.inquiry p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-qr {
  display: inline-grid;
  grid-template-columns: 148px minmax(150px, 220px);
  align-items: center;
  gap: 10px 14px;
  margin-top: 28px;
  padding: 12px;
  border-radius: 8px;
  color: #d8edf6;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-qr img {
  display: block;
  grid-row: 1 / 3;
  width: 148px;
  height: 148px;
  border-radius: 6px;
  background: var(--white);
  object-fit: cover;
}

.whatsapp-qr span {
  text-align: left;
}

.whatsapp-qr a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

input,
select,
button {
  width: 100%;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font: inherit;
}

input,
select {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

button {
  border: 0;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.form-status {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success {
  color: #0d5132;
  background: #dff5e9;
  border: 1px solid #86d8aa;
}

.form-status.error {
  color: #7f1d1d;
  background: #fde2e2;
  border: 1px solid #f3a6a6;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .inquiry,
  .shipment-news-card {
    grid-template-columns: 1fr;
  }

  .news-index-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .shipment-news-card > div {
    padding: 22px;
  }

  .product-hero h1 {
    white-space: normal;
  }

  .product-grid,
  .article-grid,
  .photo-grid,
  .capability-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .product-grid,
  .article-grid,
  .photo-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .template-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .inquiry {
    margin-left: 18px;
    margin-right: 18px;
    padding: 22px;
  }

  .whatsapp-qr {
    grid-template-columns: 1fr;
  }

  .whatsapp-qr img {
    grid-row: auto;
    width: 150px;
    height: 150px;
    justify-self: center;
  }

  .whatsapp-qr span {
    text-align: center;
  }
}





