﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-0: #07050d;
  --bg-1: #0f081a;
  --bg-2: #1a1030;
  --text: #f3f1f7;
  --muted: rgba(243, 241, 247, 0.78);
  --border: rgba(182, 152, 255, 0.24);
  --card-bg-top: rgba(29, 17, 49, 0.88);
  --card-bg-bottom: rgba(14, 9, 25, 0.92);
  --accent-1: #a35dff;
  --accent-2: #7c3dff;
  --accent-3: #5d29d8;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(132, 53, 255, 0.22), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(126, 87, 255, 0.16), transparent 24%),
    radial-gradient(circle at 55% 86%, rgba(189, 189, 255, 0.1), transparent 30%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 46%, var(--bg-0) 100%);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 46px;
  line-height: 1.1;
  color: var(--text);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 5, 13, 0.55);
  border-bottom: 1px solid rgba(182, 152, 255, 0.15);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.logo-icon {
  font-size: 26px;
  font-weight: 700;
  color: #b77bff;
}

.navbar .logo-icon {
  display: inline-flex;
  align-items: center;
  height: 120px;
  overflow: hidden;
}

.navbar .logo-icon img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text .brand {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.logo-text .sub {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #d8beff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2) 44%, var(--accent-3));
  box-shadow:
    0 14px 34px rgba(110, 57, 220, 0.35),
    0 0 24px rgba(153, 95, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
  color: #f7f3ff;
  border: 1px solid rgba(181, 151, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 85px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 6, 13, 0.96) 0%,
    rgba(8, 6, 13, 0.9) 36%,
    rgba(8, 6, 13, 0.46) 62%,
    rgba(8, 6, 13, 0.12) 100%
  );
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.image-placeholder,
.image-placeholder img {
  width: 100%;
  height: 100%;
}

.image-placeholder img {
  object-fit: cover;
  object-position: center 20%;
  display: block;
  -webkit-mask-image: linear-gradient(
    97deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.7) 36%,
    rgba(0, 0, 0, 1) 52%
  );
  mask-image: linear-gradient(
    97deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.7) 36%,
    rgba(0, 0, 0, 1) 52%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span {
  border: 1px solid rgba(181, 151, 255, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-benefits {
  list-style: none;
  margin-top: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-benefits li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a35dff;
}

/* HOW */
.how {
  padding: 86px 0;
  position: relative;
}

.how .section-title {
  color: var(--text);
}

/* shared cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.how-cards {
  position: relative;
}

.how-card {
  overflow: hidden;
}

.how-icon-wrap {
  width: 100%;
  min-height: 132px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-svg {
  width: 110px;
  height: 110px;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.42));
}

.how-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(163, 93, 255, 0.28), rgba(255, 255, 255, 0));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(181, 151, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #d6beff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card {
  position: relative;
  text-align: center;
  border-radius: 24px;
  padding: 30px 22px;
  background: linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 55px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.card p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.65;
}

.center-btn {
  text-align: center;
  margin-top: 34px;
}

/* COMPANY STORY / MAGAZINE SECTION */
.company-story {
  position: relative;
  padding: 100px 0;
}

.company-story-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.company-story-header {
  max-width: 860px;
}

.company-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(181, 151, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: #d6beff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-story-header h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.02;
  max-width: 900px;
  margin-bottom: 18px;
}

.company-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.company-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.company-feature-card,
.company-side-card,
.goal-card {
  background: linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.42);
}

.company-feature-card {
  border-radius: 28px;
  padding: 34px 32px;
}

.company-feature-card h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.company-feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.company-side-card {
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-label {
  display: inline-block;
  color: #d6beff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-stat {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}

.side-stat p,
.company-side-card blockquote {
  color: var(--muted);
  line-height: 1.75;
}

.company-side-card blockquote {
  margin-top: auto;
  padding-top: 8px;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.company-goals-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: start;
}

.company-goals-heading h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.12;
}

.company-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.goal-card {
  border-radius: 22px;
  padding: 26px 24px;
}

.goal-number {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #b77bff;
  line-height: 1;
}

.goal-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.goal-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* AFFILIATE PARTNERS */
.partners {
  padding: 100px 0;
  position: relative;
}

.partners-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.partners-header .section-title {
  margin-bottom: 18px;
}

.partners-intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.partners-masonry {
  column-count: 3;
  column-gap: 22px;
}

.partner-tile {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 24px;
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.4);
}

.partner-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d6beff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-tile h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.partner-tile p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.partner-tile.tall {
  min-height: 320px;
}

.partner-tile.wide {
  min-height: 220px;
}

/* =========================
   PREMIUM SERVICES SECTION
   ========================= */

.services-premium {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(132, 53, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(126, 87, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(189, 189, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #09070f 0%, #10081a 45%, #08060d 100%);
  isolation: isolate;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.services-header h2 {
  margin: 0 0 18px;
  color: #f3f1f7;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.services-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(29, 17, 49, 0.88), rgba(14, 9, 25, 0.9));
  border: 1px solid rgba(182, 152, 255, 0.2);
  border-radius: 28px;
  padding: 38px 30px 34px;
  min-height: 420px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 55px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(224, 214, 255, 0.28),
    rgba(149, 96, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(177, 124, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(130, 70, 255, 0.18);
}

.service-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(192, 161, 255, 0.32), transparent 45%),
    linear-gradient(180deg, rgba(74, 44, 122, 0.95), rgba(40, 19, 74, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 10px 28px rgba(131, 74, 255, 0.22),
    0 0 24px rgba(131, 74, 255, 0.18);
}

.service-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #b47cff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(180, 124, 255, 0.35));
}

.service-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 290px;
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid rgba(181, 151, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: #f7f3ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(144, 84, 255, 0.28), rgba(93, 41, 177, 0.28));
  border-color: rgba(198, 164, 255, 0.55);
  box-shadow:
    0 12px 28px rgba(110, 57, 220, 0.28),
    0 0 24px rgba(154, 105, 255, 0.2);
}

.services-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.services-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 66px;
  padding: 0 34px;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #a35dff 0%, #7c3dff 45%, #5d29d8 100%);
  box-shadow:
    0 14px 36px rgba(110, 57, 220, 0.4),
    0 0 32px rgba(153, 95, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-main-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 44px rgba(110, 57, 220, 0.5),
    0 0 44px rgba(153, 95, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.services-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.services-premium .shape-1 {
  width: 420px;
  height: 420px;
  left: -60px;
  top: 120px;
  background: rgba(151, 73, 255, 0.22);
  animation: floatGlow1 9s infinite;
}

.services-premium .shape-2 {
  width: 460px;
  height: 460px;
  right: -100px;
  top: 180px;
  background: rgba(96, 72, 255, 0.18);
  animation: floatGlow2 11s infinite;
}

.services-premium .shape-3 {
  width: 540px;
  height: 260px;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background: rgba(170, 120, 255, 0.13);
  animation: floatGlow3 12s infinite;
}

/* TRUST */
.trust {
  padding: 90px 0;
}

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

.trust-item {
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.trust-item img {
  display: block;
  width: min(160px, 92%);
  margin: 12px auto 0;
}

/* CONFIDENCE */
.confidence {
  padding: 90px 0;
}

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

.logo-box {
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(29, 17, 49, 0.88), rgba(14, 9, 25, 0.9));
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.35);
}

/* APPOINTMENT */
.appointment {
  padding: 60px 0 92px;
}

.appointment-text {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.appointment-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

/* FOOTER */
.footer {
  padding: 84px 0;
  border-top: 1px solid rgba(182, 152, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 24px;
}

.footer-brand,
.footer-contact,
.footer-card {
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(29, 17, 49, 0.88), rgba(14, 9, 25, 0.9));
  border: 1px solid var(--border);
}

.footer-brand p,
.footer-contact p,
.footer-card p {
  color: var(--muted);
  line-height: 1.65;
}

.footer-contact p + p {
  margin-top: 6px;
}

.footer-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.footer-card p {
  margin-bottom: 18px;
}

/* Founder Section */

.founder-section {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.founder-image {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.45);
}

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

.founder-info {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    var(--card-bg-top),
    var(--card-bg-bottom)
  );
  border: 1px solid var(--border);
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.founder-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* contact links */

.founder-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(181, 151, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-weight: 500;
  transition: 0.25s;
}

.contact-link:hover {
  background: rgba(163, 93, 255, 0.18);
}

/* social buttons */

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(181, 151, 255, 0.35);
  color: white;
  font-size: 0.9rem;
  transition: 0.25s;
}

.social-btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent-1),
    var(--accent-2)
  );
}

@keyframes floatGlow1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 30px) scale(1.12);
  }
}

@keyframes floatGlow2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-70px, 40px) scale(1.08);
  }
}

@keyframes floatGlow3 {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(-18px) scale(1.08);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .service-card {
    min-height: auto;
  }

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

  .confidence-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    width: 100%;
  }

  .company-editorial-grid,
  .company-goals-block,
  .founder-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .navbar .logo-icon {
    height: 82px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    padding: 74px 0;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 6, 13, 0.92) 0%,
      rgba(8, 6, 13, 0.66) 60%,
      rgba(8, 6, 13, 0.2) 100%
    );
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cards,
  .trust-grid,
  .confidence-logos {
    grid-template-columns: 1fr;
  }

  .services-premium {
    padding: 90px 16px 100px;
  }

  .services-header {
    margin-bottom: 42px;
  }

  .services-header h2 {
    font-size: 2.6rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .service-card {
    padding: 30px 22px 28px;
    border-radius: 24px;
  }

  .service-icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }

  .service-icon svg {
    width: 44px;
    height: 44px;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .service-btn,
  .services-main-cta {
    width: 100%;
    min-width: 0;
  }

  .services-cta-wrap {
    margin-top: 30px;
  }

  .appointment-widget {
    height: 760px;
  }

  .founder-info {
    padding: 24px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-bg-shape,
  .service-card,
  .service-btn,
  .services-main-cta,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
