.hero-hq{
  --hero-brand:#ef3b4a;
  --hero-brand-dark:#d92f40;
  --hero-bg:#f7f6f7;
  --hero-text:#131316;
  --hero-muted:#5c6474;
  --hero-card:#ffffff;
  --hero-line:rgba(20,24,36,.08);
  --hero-shadow:0 20px 60px rgba(20,20,43,.12);
  --hero-shadow-lg:0 28px 80px rgba(20,20,43,.18);
  --hero-radius:28px;

  position:relative;
  overflow:hidden;
  padding:clamp(24px,4vw,48px);
  border-radius:34px;
  background: radial-gradient(900px 500px at 10% 0%, rgb(42 94 165 / 35%), transparent 55%), radial-gradient(700px 420px at 100% 20%, rgba(0, 64, 151, .07), transparent 60%), linear-gradient(180deg, #fbfbfc 0%, #f4f3f4 100%);
}

.hero-hq *{
  box-sizing:border-box;
}

.hero-hq__wrap{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:clamp(24px,4vw,54px);
  align-items:center;
}

.hero-hq__content{
  position:relative;
  z-index:2;
}

.hero-hq__eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(0 65 149 / 7%);
    color: #043f98;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1px solid rgb(0 64 151 / 16%);
    box-shadow: 0 10px 25px rgb(0 64 151 / 17%);
}

.hero-hq__eyebrow-icon{
  font-size:12px;
  line-height:1;
}

.hero-hq__title{
  margin:0 0 22px;
  font-size:clamp(44px,6vw,76px);
  line-height:.98;
  letter-spacing:-0.04em;
  font-weight:900;
  color:var(--hero-text);
  max-width:8.5ch;
}

.hero-hq__accent{
  color:var(--hero-brand);
  position:relative;
  display:inline-block;
}

.hero-hq__accent::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:8%;
  height:.16em;
  background:linear-gradient(90deg, rgba(239,59,74,.26), rgba(239,59,74,.06));
  z-index:-1;
  border-radius:999px;
}

.hero-hq__desc{
  max-width:640px;
  color:var(--hero-muted);
  font-size:clamp(16px,1.35vw,18px);
  line-height:1.75;
  margin-bottom:30px;
}

.hero-hq__desc p{
  margin:0 0 10px;
}

.hero-hq__actions{
  display:flex;
  align-items:center;
  gap:24px;
}

.hero-hq__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:62px;
  padding:16px 28px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--fp-accent), var(--hero-brand-dark));
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  box-shadow:0 20px 40px rgba(239,59,74,.24);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.hero-hq__btn svg{
  width:20px;
  height:20px;
  flex:0 0 20px;
  transition:transform .25s ease;
}

.hero-hq__btn:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 50px rgba(239,59,74,.28);
  filter:saturate(1.06);
}

.hero-hq__btn:hover svg{
  transform:translateX(3px);
}

.hero-hq__trust{
  display:flex;
  align-items:center;
  gap:14px;
}

.hero-hq__avatars{
  display:flex;
  align-items:center;
}

.hero-hq__avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  overflow:hidden;
  border:3px solid #fff;
  margin-left:-10px;
  box-shadow:0 8px 20px rgba(20,20,43,.12);
}

.hero-hq__avatar:first-child{
  margin-left:0;
}

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

.hero-hq__trust-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}

.hero-hq__trust-text strong{
  font-size:28px;
  font-weight:900;
  color:var(--hero-text);
}

.hero-hq__trust-text span{
  color:var(--hero-muted);
  font-size:16px;
}

.hero-hq__media{
  position:relative;
}

.hero-hq__image-card{
  position:relative;
  border-radius:30px;
  overflow:visible;
  min-height:640px;
}

.hero-hq__image-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)),
    radial-gradient(120% 100% at 10% 10%, rgba(255,255,255,.22), transparent 55%);
  z-index:2;
  pointer-events:none;
}

.hero-hq__image{
  display:block;
  width:100%;
  height:640px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--hero-shadow-lg);
  transition:transform .6s cubic-bezier(.22,.61,.36,1), filter .35s ease;
}

.hero-hq__image-card:hover .hero-hq__image{
  transform:scale(1.03);
  filter:contrast(1.02) saturate(1.03);
}

.hero-hq__image-placeholder{
  width:100%;
  height:640px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
  border-radius:30px;
  background:linear-gradient(135deg, #e8eefc, #f4f6fb);
  border:1px dashed rgba(0,64,151,.18);
  color:var(--hero-muted);
  box-shadow:var(--hero-shadow);
}

.hero-hq__floating-badge{
  position:absolute;
  left:-24px;
  bottom:-20px;
  display:flex;
  align-items:center;
  gap:14px;
  min-width:260px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 24px 50px rgba(20,20,43,.14);
  border:1px solid rgba(20,24,36,.06);
  z-index:3;
  animation:heroBadgeFloat 4s ease-in-out infinite;
}

.hero-hq__shield{
  width:54px;
  height:54px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(47,200,112,.12);
  color:#1f9f59;
  flex:0 0 54px;
}

.hero-hq__shield svg{
  width:26px;
  height:26px;
}

.hero-hq__badge-text{
  display:flex;
  flex-direction:column;
  line-height:1.3;
}

.hero-hq__badge-text strong{
  font-size:16px;
  font-weight:800;
  color:var(--hero-text);
}

.hero-hq__badge-text span{
  font-size:14px;
  color:var(--hero-muted);
}

/* Scroll reveal */
.hero-hq[data-hero-reveal]{
  opacity:0;
  transform:translateY(30px);
  transition:
    opacity .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}

.hero-hq[data-hero-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes heroBadgeFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

@media (max-width:1080px){
  .hero-hq__wrap{
    grid-template-columns:1fr;
  }

  .hero-hq__title{
    max-width:100%;
  }

  .hero-hq__image-card,
  .hero-hq__image,
  .hero-hq__image-placeholder{
    min-height:auto;
    height:520px;
  }

  .hero-hq__floating-badge{
    left:18px;
    bottom:18px;
  }
}

@media (max-width:767px){
  .hero-hq{
    padding:20px;
    border-radius:24px;
  }

  .hero-hq__title{
    font-size:clamp(34px,11vw,52px);
  }

  .hero-hq__actions{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }

  .hero-hq__btn{
    width:100%;
  }

  .hero-hq__trust-text strong{
    font-size:22px;
  }

  .hero-hq__image,
  .hero-hq__image-placeholder{
    height:380px;
  }

  .hero-hq__floating-badge{
    position:static;
    margin-top:16px;
    min-width:100%;
    animation:none;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-hq__btn,
  .hero-hq__btn svg,
  .hero-hq__image,
  .hero-hq[data-hero-reveal]{
    transition:none !important;
  }

  .hero-hq__floating-badge{
    animation:none !important;
  }
}

/* album */
:root {
    --fp-bg: #f5f1eb;
    --fp-card: rgba(255, 255, 255, 0.72);
    --fp-card-border: rgba(255, 255, 255, 0.55);
    --fp-text: #182230;
    --fp-muted: #697586;
    --fp-accent: #004097;
    --fp-accent-2: #efeae5;
    --fp-shadow: 0 20px 50px rgba(20, 26, 36, 0.12);
    --fp-radius-xl: 28px;
    --fp-radius-lg: 22px;
}

.fp-section {
    position: relative;
    padding: 90px 20px 110px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 122, 89, 0.08), transparent 22%),
        radial-gradient(circle at 90% 10%, rgba(229, 62, 62, 0.08), transparent 18%),
        linear-gradient(180deg, #f7f3ee 0%, #f2ede7 100%);
    overflow: hidden;
}

.fp-section::before,
.fp-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.45;
    pointer-events: none;
}

.fp-section::before {
    width: 220px;
    height: 220px;
    background: rgba(255, 122, 89, 0.18);
    top: -50px;
    left: -40px;
}

.fp-section::after {
    width: 300px;
    height: 300px;
    background: rgba(229, 62, 62, 0.12);
    right: -70px;
    bottom: -70px;
}

.fp-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fp-heading-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.fp-kicker {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fp-accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.fp-heading {
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--fp-text);
    letter-spacing: -0.03em;
}

.fp-line {
    display: block;
    width: 84px;
    height: 4px;
    border-radius: 999px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, var(--fp-accent), var(--fp-accent-2));
    box-shadow: 0 8px 18px rgba(229, 62, 62, 0.25);
}

.fp-description {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--fp-muted);
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.fp-card {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.fp-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: var(--delay, 0s);
}

.fp-card-inner {
    height: 100%;
    background: var(--fp-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--fp-card-border);
    border-radius: var(--fp-radius-xl);
    overflow: hidden;
    box-shadow: var(--fp-shadow);
    position: relative;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.fp-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.34), transparent 35%, transparent 65%, rgba(255,255,255,0.12));
    pointer-events: none;
}

.fp-card:hover .fp-card-inner {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 28px 70px rgba(20, 26, 36, 0.18);
    border-color: rgba(229, 62, 62, 0.2);
}

.fp-image-wrap {
    position: relative;
    overflow: hidden;
    height: 275px;
    background: #efe7de;
}

.fp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.9s ease;
}

.fp-image-placeholder {
    background:
        linear-gradient(135deg, #e9ded1 0%, #d9c6b4 100%);
}

.fp-card:hover .fp-image {
    transform: scale(1.08);
}

.fp-glow {
    position: absolute;
    inset: auto -20% -60px -20%;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
    pointer-events: none;
}

.fp-content {
    position: relative;
    padding: 28px 24px 26px;
}

.fp-card-title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--fp-text);
    letter-spacing: -0.03em;
}

.fp-card-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--fp-muted);
    padding-right: 36px;
}

.fp-arrow {
    position: absolute;
    right: 22px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fp-accent), var(--fp-accent-2));
    color: #fff;
    box-shadow: 0 10px 24px rgb(63 109 172);
    transform: translateX(0);
    transition: transform 0.35s ease;
}

.fp-arrow svg {
    width: 18px;
    height: 18px;
}

.fp-card:hover .fp-arrow {
    transform: translateX(6px);
}

@media (max-width: 1199px) {
    .fp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-card-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .fp-section {
        padding: 70px 16px 80px;
    }

    .fp-description {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .fp-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fp-image-wrap {
        height: 240px;
    }

    .fp-card-title {
        font-size: 24px;
    }

    .fp-card-text {
        font-size: 15px;
        padding-right: 24px;
    }

    .fp-arrow {
        width: 38px;
        height: 38px;
        right: 18px;
        bottom: 18px;
    }
	.fp-heading {
		font-size: 30px;
	}
}