/* ===================== */
/* VARIABLES             */
/* ===================== */
:root {
  --color-bg: #07111f;
  --color-bg-deep: #030914;
  --color-surface: rgba(12, 26, 45, 0.88);
  --color-surface-strong: rgba(8, 19, 35, 0.96);
  --color-surface-light: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-text: #ffffff;
  --color-text-soft: #c8d2df;
  --color-text-muted: #95a3b6;
  --color-heading: #ffffff;
  --color-primary: #ff7a00;
  --color-primary-hover: #ff912d;
  --color-primary-dark: #cc6100;
  --color-secondary: #14263f;
  --color-secondary-hover: #1b3456;
  --color-success: #29c36a;
  --color-shadow: rgba(0, 0, 0, 0.35);
  --color-overlay: rgba(2, 8, 17, 0.72);

  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;

  --container-width: 1280px;
  --container-padding: 20px;
  --section-space: 72px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.4);

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.45s ease;

  --header-height: 78px;
}

/* ===================== */
/* BASE STYLES           */
/* ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-soft);
  background:
    radial-gradient(circle at top center, rgba(33, 75, 126, 0.35), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #081424 0%, #040a14 100%);
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.1;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

blockquote {
  margin: 0;
}

main {
  overflow: clip;
}

body.page-home {
  background:
    radial-gradient(circle at top center, rgba(35, 92, 160, 0.28), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 0, 0.1), transparent 20%),
    linear-gradient(180deg, #081322 0%, #040913 100%);
}

/* ===================== */
/* UTILITIES             */
/* ===================== */
.container {
  width: min(100% - (var(--container-padding) * 2), var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading--left {
  text-align: left;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading--split {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--color-text-muted);
  max-width: 700px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-primary-hover);
}

/* ===================== */
/* HEADER / PARTIALS     */
/* ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 11, 21, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-branding {
  flex-shrink: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.site-logo img {
  max-height: 42px;
  width: auto;
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list a {
  position: relative;
  color: var(--color-text-soft);
  font-weight: 700;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list a.is-active {
  color: var(--color-text);
}

.site-nav__list a.is-active::after,
.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.site-header__actions {
  display: none;
}

.site-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
}

.site-mobile-toggle:hover,
.site-mobile-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

/* ===================== */
/* MOBILE NAVIGATION     */
/* ===================== */
.site-mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0 0 4px;
}

.site-mobile-nav__inner {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(16, 34, 58, 0.96), rgba(8, 20, 37, 0.98));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.site-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 12px;
}

.site-mobile-nav__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-mobile-nav__list a {
  display: block;
  padding: 14px 12px;
  color: var(--color-text-soft);
  font-weight: 700;
  border-radius: 12px;
}

.site-mobile-nav__list a:hover,
.site-mobile-nav__list a:focus-visible,
.site-mobile-nav__list a.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}

.site-mobile-nav__actions {
  padding: 0 12px 14px;
}

.site-mobile-nav__actions .btn {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.site-header.is-scrolled {
  background: rgba(3, 9, 18, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.site-footer {
  position: relative;
  padding: 30px 0 22px;
  border-top: 1px solid var(--color-border);
  background: rgba(2, 8, 17, 0.82);
}

.site-footer__inner {
  display: grid;
  gap: 14px;
  text-align: center;
}

.site-footer__meta,
.site-footer__links {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.site-footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--color-text);
}


.site-footer {
  position: relative;
  padding: 48px 0 22px;
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(5, 12, 22, 0.96), rgba(2, 7, 14, 0.98));
}

.site-footer__top {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer__logo img {
  max-height: 42px;
  width: auto;
}

.site-footer__summary {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__heading {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-text);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 10px;
}

.site-footer__list a {
  color: var(--color-text-muted);
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: var(--color-text);
}

.site-footer__bottom {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  text-align: center;
}

.site-footer__meta,
.site-footer__links {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.site-footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--color-text);
}

@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .site-footer__links {
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .site-footer__top {
    grid-template-columns: minmax(280px, 420px) 1fr;
    align-items: start;
    gap: 48px;
  }
}

/* ===================== */
/* BUTTONS               */
/* ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--color-primary-hover), var(--color-primary));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #ff9a3d, var(--color-primary-hover));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ===================== */
/* GRID / CARD SYSTEMS   */
/* ===================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.project-grid,
.stats-grid,
.trust-logos {
  display: grid;
  gap: 18px;
}

.info-card,
.audience-card,
.project-card,
.stat-card,
.testimonial-card,
.services-strip__card,
.cta-band {
  position: relative;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 19, 35, 0.86);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.info-card,
.testimonial-card,
.stat-card {
  padding: 22px;
}


/* ===================== */
/* HERO SECTION          */
/* ===================== */
.hero-home {
  position: relative;
  padding: 40px 0 24px;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-home__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(255, 122, 0, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-home__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;   /* slightly more visible */
  filter: none;    /* REMOVE blur completely */
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-home__grid {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr;
}

.hero-home__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-home__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-home__title-line {
  display: block;
  white-space: nowrap;
}

.hero-home__title span {
  display: block;
}

.hero-home__text {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 1.08rem;
  color: var(--color-text-soft);
}

.hero-home__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-home__actions .btn {
  width: 100%;
}

.hero-home__media {
  position: relative;
}

.hero-home__mockup {
  position: relative;
  padding: 0; /* remove padding so no container feel */
  border-radius: 0;
  background: transparent; /* 🔥 removes dark box */
  border: none;
  box-shadow: none;
}

.hero-home__mockup::before {
  content: "";
  position: absolute;
  inset: auto 10% -22px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 65%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-home__mockup-image {
  width: 100%;
  border-radius: 18px;
}

@media (min-width: 640px) {
  .hero-home__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-home__actions .btn {
    width: auto;
    min-width: 180px;
  }
}

@media (min-width: 992px) {
  .hero-home {
    padding: 58px 0 20px;
  }

  .hero-home__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 46px;
  }
}

.hero-home {
  position: relative;
  padding: 40px 0 120px;
}

@media (min-width: 992px) {
  .hero-home {
    padding: 58px 0 120px;
  }
}

/* ===================== */
/* SERVICES STRIP        */
/* ===================== */
.services-strip {
  position: relative;
  z-index: 20;
  margin-top: -72px;
  padding: 0 0 24px;
}

.services-strip .container {
  position: relative;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.services-strip__card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  background:
    linear-gradient(180deg, rgba(20, 35, 58, 0.95), rgba(9, 20, 37, 0.98));
  box-shadow: none;
  overflow: hidden;
}

.services-strip__card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.services-strip__card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), rgba(255, 122, 0, 0));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.services-strip__card:first-child::after {
  opacity: 1;
}

.services-strip__card:hover::after,
.services-strip__card:focus-within::after {
  opacity: 1;
}

.services-strip__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-strip__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.services-strip__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text);
}

.services-strip__text {
  display: none;
}

.services-strip__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.section-advantages {
  padding-top: 24px;
}

/* ===================== */
/* ADVANTAGES SECTION    */
/* ===================== */
.section-advantages {
  padding-top: 28px;
}

.info-card--advantage {
  min-height: 100%;
}

.info-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.info-card__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.info-card__title {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.info-card__body p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ===================== */
/* AUDIENCES SECTION     */
/* ===================== */
.audience-card {
  min-height: 100%;
}

.audience-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.audience-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card__content {
  padding: 18px;
}

.audience-card__title {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.audience-card__text {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* ===================== */
/* PORTFOLIO SECTION     */
/* ===================== */
.project-grid {
  grid-template-columns: 1fr;
}

.project-card {
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.project-card__media-link {
  display: block;
  border-bottom: 1px solid var(--color-border);
}

.project-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card__content {
  padding: 18px;
}

.project-card__category {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card__title {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.project-card__title a:hover,
.project-card__title a:focus-visible {
  color: var(--color-primary-hover);
}

.project-card__summary {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ===================== */
/* STATS SECTION         */
/* ===================== */
.section-stats {
  padding-top: 18px;
}

.stats-grid {
  grid-template-columns: 1fr;
}

.stat-card {
  text-align: center;
}

.stat-card__value {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
}

.stat-card__label {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.stat-card__text {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ===================== */
/* TESTIMONIALS SECTION  */
/* ===================== */
.testimonial-card {
  min-height: 100%;
}

.testimonial-card__body {
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  color: var(--color-text-soft);
  font-size: 1rem;
}

.testimonial-card__name {
  margin-bottom: 4px;
  color: var(--color-text);
  font-weight: 800;
}

.testimonial-card__meta {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===================== */
/* CTA BAND              */
/* ===================== */
.cta-band {
  display: grid;
  gap: 20px;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center top, rgba(255, 122, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(16, 34, 58, 0.94), rgba(8, 20, 37, 0.98));
}

.cta-band__content h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.cta-band__content p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.cta-band__actions {
  display: flex;
  align-items: center;
}

.cta-band__actions .btn {
  width: 100%;
}

/* ===================== */
/* TRUST LOGOS           */
/* ===================== */
.section-trust-logos {
  padding-top: 18px;
}

.trust-logos {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.trust-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-logos__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.trust-logos__image {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 0.94;
}

/* ===================== */
/* FORMS                 */
/* ===================== */
.form-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(8, 19, 35, 0.88);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  color: var(--color-text);
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 122, 0, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

/* ===================== */
/* PAGE HEROES           */
/* ===================== */
.page-hero {
  position: relative;
  padding: 42px 0 28px;
}

.page-hero__inner {
  position: relative;
  padding: 28px 0 0;
}

.page-hero__title {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: -0.04em;
}

.page-hero__text {
  max-width: 780px;
  color: var(--color-text-soft);
  font-size: 1.08rem;
}

/* ===================== */
/* ACCESSIBILITY         */
/* ===================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 2000;
  padding: 10px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

/* ===================== */
/* MEDIA QUERIES         */
/* ===================== */
@media (min-width: 640px) {
  .hero-home__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-home__actions .btn {
    width: auto;
    min-width: 180px;
  }

  .services-strip__grid,
  .stats-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-band__actions .btn {
    width: auto;
    min-width: 200px;
  }

  .section-heading--split {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 768px) {
  :root {
    --container-padding: 28px;
    --section-space: 86px;
  }

  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home {
    padding: 54px 0 28px;
  }

  .hero-home__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
  }

  .services-strip {
    margin-top: -8px;
  }

  .services-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 32px 28px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .site-footer__links {
    justify-content: flex-end;
  }

  .form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  :root {
    --section-space: 100px;
  }

  .site-mobile-toggle {
    display: none;
  }

  .site-nav,
  .site-header__actions {
    display: flex;
  }

  .hero-home {
    padding: 58px 0 20px;
  }

  .hero-home__grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 560px);
    gap: 46px;
  }

  .hero-home__text {
    font-size: 1.16rem;
  }

  .services-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .hero-home__title {
    max-width: 10ch;
  }

  .hero-home__mockup {
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}


/* ===================== */
/* ABOUT PAGE            */
/* ===================== */

.about-page {
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #05070c 0%, #0b1220 100%);
  color: #f5f7fb;
}

/* ===================== */
/* ABOUT HERO            */
/* ===================== */

.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero .container {
  max-width: 900px;
}

.about-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-hero h1 span {
  display: block;
}

.about-hero .hero-subtitle {
  max-width: 760px;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.about-hero__content {
  max-width: 600px;
}

.about-hero-title {
  display: block;
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
  white-space: normal;
}

.about-hero-title br {
  display: block;
  content: "";
}

/* ===================== */
/* STORY SECTION         */
/* ===================== */

.about-story {
  padding: 5rem 0;
}

.about-story .grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #ffffff;
}

.about-story p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.about-story img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

/* ===================== */
/* WHY + AUDIENCE        */
/* ===================== */

.about-why,
.about-audience {
  padding: 5rem 0;
}

.about-why h2,
.about-audience h2,
.about-cta h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #ffffff;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-audience .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  font-weight: 700;
  font-size: 1.1rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
}

.card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* ===================== */
/* CTA SECTION           */
/* ===================== */

.about-cta {
  padding: 5rem 0 6rem;
}

.about-cta .center {
  text-align: center;
}

.about-cta .container {
  max-width: 900px;
}

.about-cta p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================== */
/* BUTTONS               */
/* ===================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b9901f);
  color: #0d1117;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 1100px) {
  .about-audience .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-story .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-story img {
    min-height: 340px;
  }

  .about-hero {
    min-height: 62vh;
    padding: 5rem 0;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .about-audience .card-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .about-story,
  .about-why,
  .about-audience,
  .about-cta {
    padding: 4rem 0;
  }
}