/* ============================================================
   TESTA — sections.css
   Key Figures · About Strip · Values · News · CTA Band · Footer
   ============================================================ */

/* ── Key Figures ── */
.key-figures {
  background: var(--gray-light);
  text-align: left;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #3489E9;
  margin: 40px 100px 0;
}

.figure-card {
  background: var(--white);
  padding: 60px 40px;
  text-align: center;
  border: 0.5px solid #3489E9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 200px;
  transition: background 0.3s ease;
}
.figure-card:hover { background: var(--lime); }

.figure-num {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 500;
  color: #3489E9;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: auto;
}
.figure-num small {
  font-size: 24px;
  vertical-align: middle;
}

.figure-label {
  font-size: 16px;
  color: #1a1e2e;
  line-height: 1.4;
  max-width: 250px;
  margin-bottom: auto;
}

/* ── About Strip ── */
.about-strip {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.about-strip-text p {
  color: #4a4f60;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-strip-visual { position: relative; }
.tank-illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Values ── */
.values-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 28px;
  border-top: 3px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.value-card:hover {
  background: rgba(185, 231, 66, 0.08);
  border-top-color: var(--lime);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--navy); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── News Cards ── */
.news-section { padding: var(--section-pad) 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.news-card {
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  overflow: hidden;
}
.news-card:hover {
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.12);
  transform: translateY(-4px);
}
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-img svg { width: 60px; opacity: 0.3; color: var(--lime); }
.news-card-body { padding: 28px; }
.news-date {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-card-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.news-read-more:hover { gap: 14px; color: var(--lime-dark); }

/* ── CTA Band ── */
.cta-band {
  background: var(--lime);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.05;
  max-width: 560px;
}

/* ── Contact Section ── */
.contact-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-info p {
  color: #4a4f60;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
}
.contact-detail-text {
  font-size: 14px;
  color: #4a4f60;
  line-height: 1.6;
}
.contact-detail-text strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  border-top: 4px solid var(--navy);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid transparent;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}
.btn-navy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-navy:disabled svg { transform: none !important; }

/* Status messages */
.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  display: none;
}
.form-status.success { color: #2a7a2a; display: block; }
.form-status.error   { color: #b03030; display: block; }

/* ── Footer ── */
.site-footer {
  background: var(--text);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }
