/* ==========================================================================
   Sections
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-6));
  padding-bottom: var(--space-7);
  overflow: hidden;
  background: var(--color-bg);
}

.hero__content h1 {
  font-size: var(--fs-display);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.hero__content h1 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-4);
  line-height: var(--lh-relaxed);
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,25,44,0.35), transparent 55%);
}

/* ---------- Trust bar ---------- */
.trust {
  padding-block: var(--space-4);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.trust__label {
  text-align: center;
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: var(--gradient-navy);
  color: var(--color-text-inverse);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__visual blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: var(--lh-relaxed);
}

.about__visual cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  font-size: var(--fs-small);
  color: var(--color-text-inverse-muted);
}

/* ---------- Services ---------- */
.services {
  background: var(--color-surface);
}

/* ---------- Why us ---------- */
.why-us__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- News / Case studies ---------- */
.news {
  background: var(--color-surface);
}

/* ---------- Portfolio ---------- */
.portfolio-section {
  background: var(--color-surface);
}

.portfolio__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--gradient-navy);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  overflow: hidden;
  text-align: center;
  margin-inline: var(--space-3);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-2);
}

.cta-banner p {
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-4);
  line-height: var(--lh-relaxed);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer-col h3 {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-2);
}

.footer-col p {
  color: var(--color-text-inverse-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-col a {
  font-size: var(--fs-small);
  color: var(--color-text-inverse-muted);
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--color-text-inverse);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-item--spaced {
  margin-top: 0.6rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.footer-brand img {
  height: 34px;
}

.social-links {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-3);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(248, 250, 252, 0.14);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* ---------- Contact section ---------- */
.contact__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-info-card {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-info-card .value-item p a {
  color: var(--color-primary);
  font-weight: 600;
}
