/* ============================================
   Consalpro — 01_Home (Figma)
   Colors: #131313 bg, #EDBC5A accent, #1A1717 footer
   ============================================ */

:root {
  --bg: #131313;
  --bg-footer: #1A1717;
  --bg-card: #1A1717;
  --bg-light: #D9D9D9;
  --text: #ffffff;
  --text-muted: #B0B0B0;
  --accent: #EDBC5A;
  --accent-light: #e8c547;
  --container: 1920px;
  --container-narrow: 1296px;
  --gap: 24px;
  --header-h: 80px;
  --radius: 8px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Rubik', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn--outline {
  padding: 16px 32px;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  gap: 10px;
}

.btn--outline:hover {
  border-color: var(--accent);
  background: rgba(237, 188, 90, 0.1);
}

.btn__arrow {
  font-size: 1.25rem;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  height: var(--header-h);
}

.header__blur {
  position: absolute;
  width: 376px;
  height: 376px;
  top: 50px;
  right: 0;
  background: var(--accent);
  opacity: 0.7;
  border-radius: 50%;
  filter: blur(400px);
  pointer-events: none;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 50px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.logo__icon {
  width: 41px;
  height: 40px;
  color: var(--accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 80px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s, opacity 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
  opacity: 1;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* 3x3 dots (Figma: 5.55px circles, #D9D9D9) */
.header__menu-dots {
  position: relative;
  width: 25px;
  height: 25px;
  background: transparent;
}

.header__menu-dots::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #D9D9D9;
  box-shadow:
    10px 0 0 #D9D9D9,
    20px 0 0 #D9D9D9,
    0 10px 0 #D9D9D9,
    10px 10px 0 #D9D9D9,
    20px 10px 0 #D9D9D9,
    0 20px 0 #D9D9D9,
    10px 20px 0 #D9D9D9,
    20px 20px 0 #D9D9D9;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  overflow: hidden;
}

.hero__dawn {
  position: absolute;
  left: 4px;
  top: 140px;
  width: 308px;
  height: 308px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero__blob {
  position: absolute;
  right: 0;
  top: 140px;
  width: 498px;
  height: 543px;
  background: var(--bg-light);
  border-radius: 50% 50% 45% 55%;
  opacity: 0.3;
}

.hero__bg-block {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 67%;
  height: 60%;
  background: #3F3F3F;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 60px 20px 80px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  margin: 0 0 60px;
  letter-spacing: -0.02em;
}

.hero__line {
  display: block;
}

.hero__line--large {
  font-size: 1.2em;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1280px;
}

.hero__left {
  margin-bottom: 20px;
}

.hero__label {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero__line-accent {
  display: block;
  width: 531px;
  max-width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  margin-top: 8px;
}

.hero__slider-nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

.hero__arrow {
  width: 46px;
  height: 46px;
  border: none;
  cursor: pointer;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.hero__arrow--next.hero__arrow--active,
.hero__arrow--active {
  background: var(--accent);
  color: var(--bg);
}

.hero__arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
}

.hero__arrow--prev::after {
  transform: rotate(-135deg);
  margin-left: -4px;
}

.hero__right {
  text-align: right;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 413px;
  margin: 0 0 24px 0;
  margin-left: auto;
}

.hero__author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.hero__author-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bg-light);
}

.hero__author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 4px;
  text-align: right;
}

.hero__author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

.hero__signature {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ========== Section common ========== */
.section {
  padding: 80px 0;
  position: relative;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 24px;
}

.section__blur {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  filter: blur(500px);
  pointer-events: none;
}

/* ========== Slider text ========== */
.section--slider-text {
  padding: 60px 0;
}

.section--slider-text .section__blur {
  width: 376px;
  height: 376px;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.slider-text__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  margin: 0 0 20px;
}

.slider-text__sub {
  font-size: clamp(2rem, 6vw, 5rem);
  color: var(--text);
  opacity: 0.4;
  margin: 0;
}

/* ========== Experience ========== */
.section--experience {
  padding: 60px 0;
}

.experience__circle {
  position: absolute;
  left: 21px;
  top: 0;
  width: 196px;
  height: 196px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.experience__asterisk {
  position: absolute;
  right: 10%;
  top: 0;
  width: 211px;
  height: 205px;
  color: var(--accent);
  font-size: 10rem;
  opacity: 0.3;
}

.experience__card {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 10px;
  max-width: 746px;
}

.experience__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.9;
  color: var(--bg-light);
  text-shadow: 2px 7px 0 rgba(255, 255, 255, 0.5);
}

.experience__word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  margin: 0 0 8px;
}

.experience__label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

/* ========== About ========== */
.section--about .section__blur--about {
  width: 376px;
  height: 376px;
  bottom: 10%;
  left: 0;
  opacity: 0.6;
}

.about__title-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about__sub {
  font-size: 1.1rem;
  color: var(--accent);
}

.about__arrow {
  color: var(--accent);
  font-size: 1rem;
}

.about__p {
  color: var(--text-muted);
  max-width: 746px;
  margin: 0 0 20px;
}

/* ========== Service ========== */
.section--service {
  background: var(--bg-card);
  border-radius: 20px;
  margin: 0 20px;
  padding: 60px 40px;
}

.section--service .section__blur--service {
  width: 376px;
  height: 376px;
  bottom: 0;
  right: 0;
  opacity: 0.6;
}

.service__title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.service__arrow-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--accent);
}

.section__title--gray {
  background: var(--bg-light);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 32px;
  display: inline-block;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.service__col {
  background: var(--bg-card);
  padding: 24px 20px 80px;
  position: relative;
}

.service__col--active .service__col-title {
  color: var(--text);
}

.service__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text);
}

.service__col-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.service__col-num {
  position: absolute;
  bottom: 24px;
  left: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
}

.service__col-num--accent {
  color: var(--accent);
}

.service__nav {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}

.service__nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

.service__nav-btn--active {
  background: var(--accent);
}

/* ========== Portfolio ========== */
.portfolio__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.portfolio__sub {
  font-size: 1.1rem;
  color: var(--accent);
}

.portfolio__arrow {
  color: var(--accent);
}

.portfolio__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 24px;
  margin-bottom: 48px;
}

.portfolio-card--s {
  grid-row: span 2;
}

.portfolio-card--m {
  grid-row: span 3;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--bg-light);
}

.portfolio-card__img--photo {
  background: linear-gradient(180deg, transparent 0%, rgba(237, 188, 90, 0.5) 100%);
}

.portfolio-card__meta {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.portfolio-card__cat {
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.portfolio-card__arrow {
  color: var(--accent);
  font-size: 1.25rem;
}

.portfolio__btn-wrap {
  text-align: center;
}

/* ========== Awards ========== */
.awards__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.awards__sub {
  font-size: 1.1rem;
  color: var(--accent);
}

.awards__arrow {
  color: var(--accent);
}

.awards__row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
  margin-top: 40px;
}

.award-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 457px;
}

.award-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
}

.award-card__icon--gold {
  background: var(--accent);
}

.award-card__icon--gray {
  background: var(--text-muted);
}

.award-card__icon--white {
  background: var(--text);
}

.award-card__text {
  flex: 1;
}

.award-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.award-card__line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.award-card__year {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.award-card__year span {
  color: var(--text);
}

/* ========== Funfact ========== */
.section--funfact {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.funfact__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 0, 0, 0.34) 49%, var(--bg) 100%);
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.funfact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.funfact__content {
  max-width: 474px;
}

.funfact__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.funfact__arrow {
  color: var(--accent);
}

.funfact__p {
  color: var(--text);
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.funfact__link {
  color: var(--accent);
  font-weight: 600;
  margin-top: 24px;
  display: inline-block;
}

.funfact__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.funfact-stat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.9;
  display: block;
  margin-bottom: 8px;
}

.funfact-stat__label {
  font-size: 1rem;
  color: var(--text);
}

/* ========== Team ========== */
.section--team .section__blur--team {
  width: 336px;
  height: 336px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.team__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.team__sub {
  font-size: 1.1rem;
  color: var(--accent);
}

.team__arrow {
  color: var(--accent);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  margin-top: 48px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.team-card__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--bg-light);
  flex-shrink: 0;
}

.team-card__avatar--2,
.team-card__avatar--3,
.team-card__avatar--4 {
  background: var(--bg-card);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.team-card__role {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 16px;
}

.team-card__social {
  display: flex;
  gap: 10px;
}

.team-card__social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}

.team-card__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ========== Video ========== */
.section--video {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video__bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
}

.video__play {
  position: relative;
  z-index: 1;
  width: 218px;
  height: 224px;
  border-radius: 50%;
  background: #141414;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.video__play:hover {
  background: #1a1a1a;
  transform: scale(1.05);
}

.video__play-icon {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
}

/* ========== Testimonial ========== */
.testimonial__inner {
  display: grid;
  grid-template-columns: 589px 1fr;
  gap: 80px;
  align-items: center;
}

.testimonial__img {
  width: 589px;
  height: 624px;
  background: var(--bg-light);
}

.testimonial__card {
  background: var(--bg-footer);
  padding: 80px 60px;
  position: relative;
}

.testimonial__deco {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-light);
}

.testimonial__quote {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.testimonial__role {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.testimonial__nav {
  display: flex;
  gap: 15px;
}

.testimonial__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}

.testimonial__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== Blog ========== */
.blog__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blog__sub {
  font-size: 1.1rem;
  color: var(--accent);
}

.blog__arrow {
  color: var(--accent);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  background: transparent;
}

.blog-card__date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-light);
}

.blog-card__arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 1.25rem;
}

/* ========== Logos strip ========== */
.section--logos {
  padding: 48px 0;
}

.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logos__item {
  width: 430px;
  max-width: 100%;
  height: 100px;
  background: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__placeholder {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-footer);
  padding: 80px 0 40px;
  position: relative;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 48px;
  padding-bottom: 24px;
}

.footer__logo .logo__icon {
  color: var(--accent);
}

.footer__logo .logo__text {
  color: var(--text);
}

.footer__divider--v {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.footer__contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer__email-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__email {
  font-size: 1rem;
  color: var(--text);
}

.footer__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.footer__social {
  display: flex;
  gap: 45px;
  margin-left: auto;
}

.footer__social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}

.footer__social-item:hover {
  color: var(--accent);
}

.footer__social-icon {
  font-size: 0.8rem;
  opacity: 0.9;
}

.footer__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0 32px;
}

.footer__mid {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 60px 80px;
  align-items: start;
  padding-bottom: 32px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--text);
}

.footer__links {
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 15px;
}

.footer__links a {
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__cta-circle {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  line-height: 1.3;
  padding: 20px;
  margin-left: auto;
  transition: transform 0.2s, background 0.2s;
}

.footer__cta-circle:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: transform 0.2s, background 0.2s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.back-to-top::after {
  content: '';
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 6px;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .nav__list {
    gap: 40px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__right {
    text-align: left;
  }

  .hero__desc {
    margin-left: 0;
  }

  .hero__author {
    justify-content: flex-start;
  }

  .hero__author-name,
  .hero__author-role {
    text-align: left;
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .funfact__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .funfact__content {
    max-width: 100%;
  }

  .funfact__sub {
    justify-content: center;
  }

  .testimonial__inner {
    grid-template-columns: 1fr;
  }

  .testimonial__img {
    width: 100%;
    max-width: 589px;
    margin: 0 auto;
  }

  .footer__mid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__cta-circle {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header__inner {
    padding-top: 20px;
  }

  .nav__list {
    display: none;
  }

  .header__menu {
    display: flex;
  }

  .hero__dawn,
  .hero__blob {
    display: none;
  }

  .hero__bottom {
    gap: 32px;
  }

  .experience__card {
    flex-direction: column;
    text-align: center;
  }

  .service__grid {
    grid-template-columns: 1fr;
  }

  .service__title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio__masonry {
    grid-template-columns: 1fr;
  }

  .portfolio-card--s,
  .portfolio-card--m {
    grid-row: span 1;
  }

  .awards__row {
    flex-direction: column;
    align-items: center;
  }

  .funfact__stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-card__social {
    justify-content: center;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__divider--v {
    display: none;
  }

  .footer__social {
    margin-left: 0;
  }

  .footer__mid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section--service {
    margin: 0;
    border-radius: 0;
    padding: 40px 20px;
  }

  .hero__title {
    font-size: 2.5rem;
  }
}
