/* =========================================================
   PAGES.CSS
   Home page sections
   ========================================================= */


/* =========================================================
   1. TYPOGRAPHY HELPERS
   ========================================================= */

.section-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.page-content .page-header h1,
.single-content h1,
.archive-content h1,
.blog-index h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--color-text);
}


/* =========================================================
   2. HOME HERO
   ========================================================= */

.home-hero {
  position: relative;
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #f6f8f4 0%, #ffffff 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--color-accent);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.home-hero__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--color-text);
  text-wrap: balance;
}

.home-hero__text {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(16, 37, 18, 0.82);
}

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

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--color-primary);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.hero-quick-links a:hover {
  border-color: var(--color-primary);
  background: rgba(16, 37, 18, 0.04);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-job-link {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 37, 18, 0.72);
}

.hero-job-link a {
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.hero-job-link a:hover {
  text-decoration: underline;
}

.home-hero__media {
  position: relative;
}

.hero-visual {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--color-border);
  background: #e9ece6;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 4.7;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   3. HOME INTRO / CHI SIAMO
   ========================================================= */

.home-intro {
  padding: 80px 0;
  background: #ffffff;
}

.home-intro__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.035);
}

.home-intro__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.home-intro__text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.home-intro__media {
  display: flex;
}

.home-intro__placeholder {
  width: 84%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(135deg, #f4f4ef, #ecece6);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.home-intro__placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}


/* =========================================================
   4. HOME SERVICES
   ========================================================= */

.home-services {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
}

.home-services__heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.home-services__title {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-wrap: balance;
}

.home-services__intro {
  margin: 0;
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-soft);
}

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

.home-services__grid .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(17, 53, 26, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfb 100%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.home-services__grid .service-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
  opacity: 0.18;
  transition: width 0.28s ease, opacity 0.28s ease;
}

.home-services__grid .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 53, 26, 0.14);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.home-services__grid .service-card:hover::before {
  width: 96px;
  opacity: 1;
}

.home-services__grid .service-card:first-child {
  border-color: rgba(14, 122, 40, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fafcf8 100%);
}

.home-services__grid .service-card:first-child::before {
  width: 92px;
  opacity: 1;
  background: #f3bc00;
}

.service-card__media {
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 53, 26, 0.06);
  background: #e9ece6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.service-card__title {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.service-card__text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.service-card__cta {
  margin-top: auto;
  padding-top: 6px;
}

.service-card__cta .btn,
.service-card__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(14, 122, 40, 0.08);
  border: 1px solid rgba(14, 122, 40, 0.12);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card__cta .btn:hover,
.service-card__cta a:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(14, 122, 40, 0.18);
}


/* =========================================================
   5. PRODUCT SECTIONS
   ========================================================= */

.home-sections-product {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, #fbfbf8 100%);
}

.home-sections-product__heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.home-sections-product__title {
  margin: 0 0 16px;
  max-width: 15ch;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-wrap: balance;
}

.home-sections-product__intro {
  margin: 0;
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.home-sections-product__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.product-sector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfb 100%);
  border: 1px solid rgba(17, 53, 26, 0.08);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.product-sector-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
  opacity: 0.18;
  transition: width 0.28s ease, opacity 0.28s ease;
  z-index: 3;
}

.product-sector-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(17, 53, 26, 0.12);
}

.product-sector-card:hover::before {
  width: 86px;
  opacity: 1;
}

.product-sector-card:first-child {
  border-color: rgba(14, 122, 40, 0.16);
}

.product-sector-card:first-child::before {
  width: 84px;
  opacity: 1;
  background: #f3bc00;
}

.product-sector-card__media {
  position: relative;
  width: 100%;
  height: 196px;
  overflow: hidden;
  background: #dde5d9;
}

.product-sector-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
}

.product-sector-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.product-sector-card:hover .product-sector-card__media img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.product-sector-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px 18px 22px;
  height: 100%;
}

.product-sector-card__title {
  margin: 0 0 12px;
  min-height: 2.5em;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.product-sector-card__text {
  margin: 0;
  min-height: 6.9em;
  font-size: 14px;
  line-height: 1.62;
  color: var(--color-text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* =========================================================
   6. SEDI
   ========================================================= */

.home-sedi {
  padding: 92px 0;
  background: #ffffff;
}

.home-sedi__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.home-sedi__title {
  margin: 0 0 16px;
  max-width: 15ch;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.home-sedi__text {
  margin: 0 0 20px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.82;
  color: var(--color-text-soft);
}

.home-sedi__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.home-sedi__list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 600;
  color: #2f342f;
}

.sedi-map-placeholder {
  width: 100%;
  height: 340px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, #edf1e9 0%, #f7f8f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a615a;
  font-size: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.sedi-map-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}


/* =========================================================
   7. HOME NEWS + CONTACT
   ========================================================= */

.home-news-contact {
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(39, 87, 58, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}

.home-news-contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: start;
  gap: 34px;
}

.home-news-contact__news,
.home-news-contact__contact {
  min-width: 0;
}

.home-news-contact__heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.home-news-contact__title {
  margin: 0 0 16px;
  max-width: 12ch;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-wrap: balance;
}

.home-news-contact__intro {
  margin: 0;
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

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

.news-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(17, 53, 26, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fcfcfa 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.news-teaser::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
  opacity: 0.22;
  transition: width 0.28s ease, opacity 0.28s ease;
}

.news-teaser:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 53, 26, 0.14);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.news-teaser:hover::before {
  width: 110px;
  opacity: 1;
}

.news-teaser__media {
  position: relative;
  display: block;
  min-height: 170px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 53, 26, 0.06);
  border-radius: 20px;
  background: #e8ece6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.news-teaser__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
}

.news-teaser__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.news-teaser:hover .news-teaser__media img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}

.news-teaser__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 170px;
  height: 100%;
  padding: 22px;
  background: linear-gradient(180deg, #edf1eb 0%, #e4ebe0 100%);
  color: var(--color-primary);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 2px 4px 2px 0;
}

.news-teaser__meta {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-teaser__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.news-teaser__title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.news-teaser__excerpt {
  margin: 0 0 18px;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(14, 122, 40, 0.08);
  border: 1px solid rgba(14, 122, 40, 0.12);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    gap 0.22s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.news-teaser__link:hover {
  gap: 10px;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(14, 122, 40, 0.18);
}


/* =========================================================
   8. CONTACT PANEL
   ========================================================= */

.home-news-contact__contact {
  position: relative;
}

.contact-panel {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 188, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #0f7a28 0%, #0a5b1d 100%);
  box-shadow: 0 26px 64px rgba(8, 40, 16, 0.22);
  color: #ffffff;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 51, 0.16), transparent 68%);
  pointer-events: none;
}

.contact-panel .section-eyebrow {
  color: rgba(255, 208, 51, 0.92);
}

.contact-panel__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.contact-panel__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.75;
}

.contact-panel__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.contact-panel__trust li {
  margin: 0;
}

.contact-panel__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 208, 51, 0.26);
  border-radius: 999px;
  background: rgba(255, 208, 51, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-panel__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-panel__field,
.contact-panel__field-grid {
  min-width: 0;
}

.contact-panel__field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-panel__field label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 700;
}

.contact-panel__field input,
.contact-panel__field select,
.contact-panel__field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-panel__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 208, 51, 0.9) 50%),
    linear-gradient(135deg, rgba(255, 208, 51, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-panel__field input:focus,
.contact-panel__field select:focus,
.contact-panel__field textarea:focus {
  border-color: rgba(255, 208, 51, 0.55);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(243, 188, 0, 0.14);
}

.contact-panel__field textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-panel__field input::placeholder,
.contact-panel__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.contact-panel__consent label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.contact-panel__consent input {
  margin-top: 2px;
  accent-color: #f3bc00;
}

.contact-panel__feedback {
  min-height: 22px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 600;
}

.contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 16px 22px;
  border: 0;
  border-radius: 18px;
  background: #f3bc00;
  color: #102512;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #ffcb1f;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.96;
}

.contact-submit.is-loading {
  background: #e3b000;
  color: #102512;
}

.contact-submit.is-success {
  background: #dff3df;
  color: #0f4d1b;
}

.contact-submit__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease;
}


/* =========================================================
   9. RESPONSIVE
   ========================================================= */

@media (max-width: 1280px) {
  .home-sections-product__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .product-sector-card__media {
    height: 210px;
  }
}

@media (max-width: 1180px) {
  .home-news-contact__shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 1000px) {
  .home-hero__inner,
  .home-sedi__inner,
  .home-intro__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero__title {
    max-width: 100%;
  }

  .home-services {
    padding: 80px 0;
  }

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

  .service-card__media {
    height: 180px;
  }

  .sedi-map-placeholder {
    height: 280px;
  }
}

@media (max-width: 900px) {
  .home-sections-product__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-sector-card__media {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .home-news-contact {
    padding: 76px 0 86px;
  }

  .home-news-contact__heading {
    margin-bottom: 28px;
  }

  .news-teaser {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .news-teaser__media,
  .news-teaser__placeholder {
    min-height: 220px;
    border-radius: 18px;
  }

  .news-teaser__title {
    font-size: 24px;
  }

  .news-teaser__excerpt {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .news-teaser__link {
    min-height: 46px;
  }

  .contact-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-panel__field-grid {
    grid-template-columns: 1fr;
  }

  .home-news-contact__title,
  .contact-panel__title {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .home-services {
    padding: 64px 0;
  }

  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .service-card__title {
    font-size: 21px;
  }

  .home-services__intro {
    font-size: 16px;
    line-height: 1.8;
  }

  .service-card__cta .btn,
  .service-card__cta a {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 68px 0 52px;
  }

  .home-hero__text,
  .home-sedi__text {
    font-size: 16px;
  }

  .hero-actions .btn,
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-quick-links {
    gap: 10px;
  }

  .hero-quick-links a {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    aspect-ratio: 4 / 3.7;
  }

  .home-sections-product {
    padding: 64px 0;
  }

  .home-sections-product__heading {
    margin-bottom: 30px;
  }

  .home-sections-product__title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
  }

  .home-sections-product__intro {
    font-size: 16px;
    line-height: 1.8;
  }

  .home-sections-product__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-sector-card {
    border-radius: 20px;
  }

  .product-sector-card__media {
    height: 220px;
  }

  .product-sector-card__body {
    padding: 18px 16px 20px;
  }

  .product-sector-card__title {
    min-height: auto;
    font-size: 20px;
  }

  .product-sector-card__text {
    min-height: auto;
    font-size: 15px;
    line-height: 1.7;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}