@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 6px var(--page-pad);
  padding: clamp(60px, 10vw, 96px) clamp(28px, 7vw, 80px);
  display: flex;
  align-items: center;
  min-height: clamp(360px, 52vw, 520px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #6f0a2a 0%,
    #9c0e38 35%,
    #b10c41 60%,
    #c21050 100%
  );
}

.hero__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.hs {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1.5;
}
.hs--1 {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.09);
  --r: 0deg;
  animation: shapeFloat 9s ease-in-out infinite;
}
.hs--2 {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.07);
  --r: 0deg;
  animation: shapeFloat 12s ease-in-out 1.5s infinite;
}
.hs--3 {
  stroke: rgba(255, 255, 255, 0.08);
  --r: 0deg;
  animation: shapeFloat 10s ease-in-out 3s infinite;
}
.hs--4 {
  stroke: rgba(255, 255, 255, 0.06);
  --r: 22deg;
  animation: shapeFloat 14s ease-in-out 0.5s infinite;
}
.hs--5 {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.10);
  --r: -14deg;
  animation: shapeFloat 11s ease-in-out 2s infinite;
}

.hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero__anim {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.8s;
  animation-name: heroFadeUp;
}
.hero__anim--1 { animation-delay: 0.08s; }
.hero__anim--2 { animation-delay: 0.22s; }
.hero__anim--3 { animation-delay: 0.38s; }
.hero__anim--4 { animation-delay: 0.54s; }

.hero__rule.hero__anim {
  animation-name: heroScaleIn;
  transform-origin: left center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.hero__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 2px;
}
.hero__title--thin {
  font-family: var(--font);
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 200;
  color: rgba(255, 255, 255, 0.78);
}
.hero__title--bold {
  font-family: var(--font);
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 900;
  color: #ffffff;
}

.hero__rule {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  margin: 22px 0;
}

.hero__sub {
  font-family: var(--font);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__btn {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.hero__btn--primary {
  background: #ffffff;
  color: #b10c41;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.hero__btn--primary:hover {
  background: #f5f5f5;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.hero__btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.hero__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero__btn--ghost:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 56px);
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    border-radius: 16px;
    margin: 4px var(--page-pad);
    padding: 56px 24px 60px;
    min-height: clamp(440px, 90vw, 560px);
    align-items: center;
    justify-content: center;
  }

  .hero__wrap {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__eyebrow { justify-content: center; }

  .hero__rule {
    margin: 18px auto;
    transform-origin: center center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .hero__btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 20px;
  }

  .hero__btn--primary:hover,
  .hero__btn--ghost:hover { transform: none; }
}

@media (max-width: 480px) {
  .hero {
    border-radius: 14px;
    padding: 48px 18px 52px;
    min-height: clamp(400px, 105vw, 500px);
  }
  .hero__title--thin,
  .hero__title--bold { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hero__sub { font-size: 0.72rem; letter-spacing: 0.14em; }
}

@media (max-width: 360px) {
  .hero { border-radius: 12px; padding: 40px 16px 44px; }
  .hero__title--thin,
  .hero__title--bold { font-size: 2.3rem; }
  .hero__eyebrow { font-size: 0.56rem; }
  .hero__sub { font-size: 0.68rem; }
}

.stats { padding: 20px var(--page-pad); }

.statsWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.statsGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(177,12,65,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(177,12,65,0.10) 0%, transparent 55%),
    #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.statCard {
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.statCard + .statCard::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(177,12,65,0.1);
}

.statValue {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--brand);
}
.statLabel {
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats { padding: 12px var(--page-pad); }
  .statsGrid { border-radius: 20px; }
  .statCard { padding: 28px 16px; }
  .statValue { font-size: clamp(1.5rem, 5.5vw, 1.9rem); margin-bottom: 5px; }
  .statLabel { font-size: clamp(0.68rem, 2.2vw, 0.8rem); }
}
@media (max-width: 600px) {
  .stats { padding: 10px var(--page-pad); }
  .statsGrid { border-radius: 18px; }
  .statCard { padding: 22px 10px; }
  .statValue { font-size: clamp(1.3rem, 5vw, 1.6rem); margin-bottom: 4px; }
  .statLabel { font-size: clamp(0.6rem, 2.3vw, 0.72rem); letter-spacing: 0; }
  .statCard + .statCard::before {
    left: 0; top: 15%; bottom: 15%;
    width: 1px; height: auto;
  }
}
@media (max-width: 380px) {
  .statCard { padding: 18px 8px; }
  .statValue { font-size: 1.2rem; }
  .statLabel { font-size: 0.58rem; }
}

.how { padding: 80px var(--page-pad) 60px; }

.how__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.how__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how__blob {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,12,65,0.22) 0%, rgba(177,12,65,0.06) 55%, transparent 75%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.how__blob--2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(177,12,65,0.30) 0%, rgba(177,12,65,0.08) 50%, transparent 70%);
  animation: blobPulse 3.5s ease-in-out infinite alternate;
}

@keyframes blobPulse {
  from { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
  to   { transform: translate(-50%, -50%) scale(1.15); opacity: 1;   }
}

.how__phone {
  position: relative;
  z-index: 1;
  width: 260px;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.how__phone.is-visible { opacity: 1; transform: translateY(0); }

.how__phone-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.how__content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.how__content.is-visible { opacity: 1; transform: translateX(0); }

.how__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.how__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: stretch;
}

.how__step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how__step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(177,12,65,0.08);
  border: 1.5px solid rgba(177,12,65,0.2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.how__step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(177,12,65,0.30), rgba(177,12,65,0.08));
  margin-top: 6px;
}
.how__step-line--last { background: transparent; }

.how__step-body {
  padding: 12px 0 32px 16px;
  align-self: start;
}
.how__step:last-child .how__step-body { padding-bottom: 0; }

.how__step-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.how__step-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.how__cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .how__wrap { gap: 48px; }
  .how__phone { width: 220px; }
  .how__blob  { width: 290px; height: 290px; }
  .how__blob--2 { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
  .how { padding: 48px var(--page-pad) 40px; }
  .how__wrap { grid-template-columns: 1fr; gap: 36px; }
  .how__media { order: 1; }
  .how__content { order: 2; }
  .how__content {
    transform: none;
    transition: opacity 0.7s ease 0.15s;
  }
  .how__content.is-visible { transform: none; }
  .how__phone { width: 200px; }
  .how__blob  { width: 280px; height: 280px; }
  .how__blob--2 { width: 200px; height: 200px; }
  .how__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 28px;
    text-align: center;
  }
  .how__steps { margin-bottom: 32px; }
  .how__step { grid-template-columns: 48px 1fr; }
  .how__step-icon { width: 48px; height: 48px; }
  .how__step-body { padding: 10px 0 28px 14px; }
  .how__step-title { font-size: 0.95rem; }
  .how__step-desc { font-size: 0.83rem; }
  .how__cta { flex-direction: column; gap: 10px; }
  .how__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .how { padding: 40px var(--page-pad) 32px; }
  .how__phone { width: 180px; border-radius: 22px; }
  .how__blob  { width: 240px; height: 240px; }
  .how__blob--2 { width: 175px; height: 175px; }
  .how__step { grid-template-columns: 44px 1fr; }
  .how__step-icon { width: 44px; height: 44px; }
  .how__step-body { padding: 8px 0 24px 12px; }
}

@media (max-width: 360px) {
  .how__step { grid-template-columns: 40px 1fr; }
  .how__step-icon { width: 40px; height: 40px; }
  .how__step-title { font-size: 0.88rem; }
  .how__step-desc { font-size: 0.8rem; }
}


.services { padding: 80px var(--page-pad); }

.services__header {
  text-align: center;
  margin-bottom: 56px;
}
.services__sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.services__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services__card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.services__card:nth-child(1) { transition-delay: 0.05s; }
.services__card:nth-child(2) { transition-delay: 0.13s; }
.services__card:nth-child(3) { transition-delay: 0.21s; }
.services__card:nth-child(4) { transition-delay: 0.29s; }
.services__card:nth-child(5) { transition-delay: 0.37s; }
.services__card:nth-child(6) { transition-delay: 0.45s; }
.services__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.services__card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(177,12,65,0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.services__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.3s ease;
}
.services__card-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  transition: color 0.3s ease;
}
.services__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  padding: 7px 16px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 4px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.services__card--active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(177,12,65,0.28);
}
.services__card--active .services__card-icon { background: rgba(255,255,255,0.18); color: #fff; }
.services__card--active .services__card-title { color: #fff; }
.services__card--active .services__card-desc  { color: rgba(255,255,255,0.85); }
.services__card--active .services__card-cta   { background: #fff; color: var(--brand); border-color: #fff; }

@media (max-width: 1024px) {
  .services__grid { gap: 18px; }
  .services__card { padding: 28px 22px 22px; }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services { padding: 48px var(--page-pad) 40px; }
  .services__header { margin-bottom: 32px; }
  .services__title { font-size: clamp(1.6rem, 5vw, 2rem); }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .services__card {
    padding: 22px 18px 18px;
    gap: 10px;
    border-radius: 14px;
  }
  .services__card-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
  }
  .services__card-title { font-size: 0.97rem; }
  .services__card-desc { font-size: 0.8rem; line-height: 1.6; }
  .services__card-cta {
    font-size: 0.78rem;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .services { padding: 40px var(--page-pad) 32px; }
  .services__header { margin-bottom: 24px; }
  .services__grid { gap: 10px; }
  .services__card { padding: 18px 14px 16px; gap: 8px; border-radius: 12px; }
  .services__card-icon { width: 40px; height: 40px; border-radius: 9px; }
  .services__card-title { font-size: 0.88rem; }
  .services__card-desc { font-size: 0.76rem; }
  .services__card-cta { font-size: 0.73rem; padding: 6px 12px; }
}

@media (max-width: 360px) {
  .services__grid { gap: 8px; }
  .services__card { padding: 14px 12px; }
  .services__card-icon { width: 36px; height: 36px; }
  .services__card-title { font-size: 0.82rem; }
  .services__card-desc { font-size: 0.72rem; }
}


@keyframes ct-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ct-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

.contact-section {
  position: relative;
  width: calc(100% - var(--page-pad) * 2);
  margin: 0 var(--page-pad);
  border-radius: 20px;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #6f0a2a 0%,
    #9c0e38 35%,
    #b10c41 60%,
    #c21050 100%
  );
}

.contact-section__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.cs {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1.5;
}
.cs--1 {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.09);
}
.cs--2 {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.07);
}
.cs--3 {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.10);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  animation: ct-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}
.contact-link:hover svg {
  transform: translateY(-3px) scale(1.1);
}
.contact-link:active svg { transform: scale(0.95); }

.contact-link:nth-child(1) { animation: ct-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.contact-link:nth-child(2) { animation: ct-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both; }
.contact-link:nth-child(3) { animation: ct-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.57s both; }
.contact-link:nth-child(4) { animation: ct-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both; }

@media (max-width: 768px) {
  .contact-section {
    padding: 44px 20px;
    border-radius: 16px;
  }
  .contact-inner { gap: 20px; }
  .contact-heading { font-size: clamp(1.3rem, 5.5vw, 1.9rem); }
  .contact-icons { gap: 14px; }
  .contact-link { width: 48px; height: 48px; }
  .contact-link svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 36px 16px;
    border-radius: 14px;
    width: calc(100% - var(--page-pad) * 2);
  }
  .contact-inner { gap: 16px; }
  .contact-heading { font-size: clamp(1.1rem, 6vw, 1.5rem); }
  .contact-icons { gap: 12px; }
  .contact-link { width: 44px; height: 44px; }
  .contact-link svg { width: 20px; height: 20px; }
  .contact-link:hover svg { transform: none; }
}

@media (max-width: 360px) {
  .contact-section { padding: 32px 14px; border-radius: 12px; }
  .contact-inner { gap: 14px; }
  .contact-heading { font-size: 1rem; }
  .contact-icons { gap: 10px; }
  .contact-link { width: 40px; height: 40px; }
  .contact-link svg { width: 18px; height: 18px; }
}