:root {
  --bg: #090816;
  --surface: #15142b;
  --surface-2: #1c1a38;
  --text: #f8f7ff;
  --muted: #aaa8c0;
  --border: rgba(255, 255, 255, 0.11);
  --purple: #9272ff;
  --purple-2: #7051df;
  --green: #5ee0a1;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

body {
  min-width: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 85, 255, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(65, 156, 255, 0.1), transparent 28%),
    var(--bg);
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}

.glow {
  position: fixed;
  z-index: -1;
  filter: blur(95px);
  border-radius: 50%;
  pointer-events: none;
}

.glow.one {
  width: 260px;
  height: 260px;
  top: 100px;
  left: -140px;
  background: rgba(120, 85, 255, 0.15);
}

.glow.two {
  width: 320px;
  height: 320px;
  right: -150px;
  bottom: -120px;
  background: rgba(65, 160, 255, 0.12);
}

/* NAVBAR */

.navbar {
  width: min(var(--container), calc(100% - 40px));
  height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-image,
.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(205, 190, 255, 0.45);
  border-radius: 12px;
}

.brand-dot {
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-contact {
  padding: 11px 16px;
  border: 1px solid rgba(150, 120, 255, 0.35);
  border-radius: 12px;
  color: #e4ddff !important;
  background: rgba(130, 95, 255, 0.14);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
}

/* SHARED */

.label {
  color: #c9beff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.btn {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: 0.2s;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), #7658ef);
  box-shadow: 0 12px 27px rgba(120, 86, 255, 0.25);
}

.btn-soft {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.section {
  padding: 88px 0;
}

.section-title {
  margin-top: 10px;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -1.4px;
  line-height: 1.1;
}

.accent {
  color: #aa93ff;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

/* HERO */

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 65px;
  padding: 60px 0 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(147, 116, 255, 0.28);
  border-radius: 999px;
  color: #cdc4ff;
  background: rgba(130, 91, 245, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(94, 224, 161, 0.12);
}

.hero h1 {
  margin-top: 20px;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  letter-spacing: -2px;
  line-height: 1.05;
}

.hero-text {
  max-width: 570px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.mini-stats strong {
  display: block;
  font-size: 0.84rem;
}

.mini-stats span {
  display: block;
  margin-top: 4px;
  color: #8d8aa2;
  font-size: 0.74rem;
}

/* PROFILE CARD */

.profile-card {
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(192, 177, 255, 0.2);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(140, 105, 255, 0.14), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow);
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: cover;
  border: 2px solid rgba(220, 210, 255, 0.85);
  border-radius: 18px;
}

.profile-top h2 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.35rem;
}

.profile-top p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

.line {
  height: 1px;
  margin: 24px 0;
  background: var(--border);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #bbb8cd;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
}

.skills {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.skill-name {
  font-size: 0.77rem;
  font-weight: 700;
}

.bar {
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #946fff, #69b8ff);
}

.project-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 14px 15px;
  border: 1px solid rgba(149, 114, 255, 0.28);
  border-radius: 13px;
  color: #ece8ff;
  background: rgba(142, 105, 255, 0.13);
  font-size: 0.85rem;
  font-weight: 800;
}

/* ABOUT + SERVICE CARDS */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  margin-top: 30px;
}

.card,
.info-card,
.service-card,
.page-card,
.contact-card,
.donate-card {
  border: 1px solid var(--border);
  background: rgba(20, 19, 43, 0.8);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 30px;
  border-radius: 22px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #d9cdff;
  background: rgba(143, 107, 255, 0.16);
}

.about-card h3 {
  margin-top: 18px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.4rem;
}

.about-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-list {
  display: grid;
  gap: 12px;
}

.info-card {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 17px;
}

.info-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #d4c7ff;
  background: rgba(119, 96, 255, 0.17);
}

.info-card small {
  color: #9190aa;
}

.info-card strong {
  display: block;
  margin-top: 4px;
  font-size: 0.87rem;
}

.service-desc {
  max-width: 650px;
  margin-top: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  position: relative;
  min-height: 145px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 19px;
  transition: 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(153, 124, 255, 0.42);
}

.service-icon {
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: #c8bbff;
  background: rgba(123, 102, 255, 0.15);
  font-size: 1.25rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

.service-copy {
  padding-right: 20px;
}

.service-copy h3 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 1rem;
}

.service-copy p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.58;
}

.arrow {
  position: absolute;
  right: 18px;
  color: #aaa6c1;
}

/* VIDEO THUMBNAIL HOMEPAGE CARD */

.thumbnail-service-card {
  border-color: rgba(255, 112, 183, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 92, 174, 0.08), transparent 54%),
    rgba(20, 19, 43, 0.8);
}

.thumbnail-service-card:hover {
  border-color: rgba(255, 118, 188, 0.48);
}

.thumbnail-icon {
  color: #ffc0e5;
  background: rgba(255, 90, 173, 0.14);
}

.copyright {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 29px;
  border-radius: 23px;
}

.copyright h2 {
  margin-top: 8px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.4rem;
}

.copyright p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.copyright .btn {
  margin-left: auto;
  white-space: nowrap;
}

/* SERVICE PAGES */

.page-main {
  min-height: calc(100vh - 160px);
  padding: 42px 0 78px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c2bfd5;
  font-weight: 700;
}

.page-card {
  margin-top: 22px;
  padding: 36px;
  border-radius: 25px;
}

.page-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(157, 129, 255, 0.25);
  border-radius: 20px;
  color: #e6ddff;
  background: rgba(140, 105, 255, 0.17);
  font-size: 1.7rem;
}

.page-icon img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.page-head h1 {
  margin-top: 8px;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1.5px;
}

.page-head p {
  max-width: 750px;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
}

.split h2 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #cbc8d9;
  font-size: 0.86rem;
  line-height: 1.58;
}

.check-list i {
  margin-top: 4px;
  color: #82dfae;
}

.note {
  padding: 18px;
  border: 1px solid rgba(137, 113, 255, 0.22);
  border-radius: 16px;
  background: rgba(130, 100, 255, 0.08);
}

.note h3 {
  font-size: 0.92rem;
}

.note p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.68;
}

/* PRICING */

.pricing {
  margin-top: 37px;
  padding-top: 31px;
  border-top: 1px solid var(--border);
}

.pricing-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-title h2 {
  margin-top: 9px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 2rem;
}

.pricing-title p {
  max-width: 410px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 18px;
}

/* CURVED PRICING CARDS */

.plan {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  border: 1px solid rgba(25, 25, 45, 0.1);
  border-radius: 22px;
  background: #f8f8fc;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.plan-top {
  position: relative;
  min-height: 235px;
  padding: 23px 21px 95px;
  overflow: hidden;
  color: #ffffff;
}

.plan.blue .plan-top {
  background: linear-gradient(135deg, #11b4cf 0%, #173a7a 100%);
}

.plan.purple .plan-top {
  background: linear-gradient(135deg, #e17abc 0%, #741094 100%);
}

.plan.red .plan-top {
  background: linear-gradient(135deg, #ff7063 0%, #c20e18 100%);
}

.plan.gold .plan-top {
  background: linear-gradient(135deg, #e7bd4a 0%, #88540b 100%);
}

.plan.green .plan-top {
  background: linear-gradient(135deg, #2dcb82 0%, #08794e 100%);
}

.plan-top::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: -92px;
  bottom: -115px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-18deg);
}

.plan-top::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -75px;
  bottom: -104px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.plan-label,
.plan-top h3,
.price {
  position: relative;
  z-index: 5;
}

.plan-label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 0 999px 999px 0;
  color: #29283a;
  background: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.12);
}

.plan-top h3 {
  margin-top: 22px;
  color: #ffffff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.38rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 15px;
  color: #ffffff;
}

.price strong {
  color: #ffffff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 2.85rem;
  letter-spacing: -2px;
  line-height: 0.9;
}

.price span {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

.plan-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 325px;
  margin-top: -84px;
  padding: 101px 20px 20px;
  isolation: isolate;
  color: #303041;
  background: transparent;
}

.plan-body::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -12px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 54% 54% 0 0 / 92px 92px 0 0;
  background: #f8f8fc;
}

.plan-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 37px;
  left: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(65, 65, 80, 0.18);
  box-shadow:
    23px 9px 0 -1px rgba(65, 65, 80, 0.13),
    48px 1px 0 -2px rgba(65, 65, 80, 0.1);
}

/* BLUE CURVE */

.plan.blue .plan-body {
  margin-top: -78px;
  padding-top: 96px;
}

.plan.blue .plan-body::after {
  top: -18px;
  left: -18%;
  width: 122%;
  border-radius: 42% 68% 0 0 / 72px 105px 0 0;
  transform: rotate(-3deg);
}

.plan.blue .plan-body::before {
  background: rgba(11, 155, 199, 0.68);
  box-shadow:
    23px 9px 0 -1px rgba(11, 155, 199, 0.48),
    48px 1px 0 -2px rgba(11, 155, 199, 0.35);
}

/* PURPLE CURVE */

.plan.purple .plan-body {
  margin-top: -88px;
  padding-top: 106px;
}

.plan.purple .plan-body::after {
  top: -10px;
  left: -10%;
  width: 120%;
  border-radius: 56% 56% 0 0 / 110px 110px 0 0;
}

.plan.purple .plan-body::before {
  background: rgba(176, 45, 181, 0.65);
  box-shadow:
    23px 9px 0 -1px rgba(176, 45, 181, 0.48),
    48px 1px 0 -2px rgba(176, 45, 181, 0.35);
}

/* RED CURVE */

.plan.red .plan-body {
  margin-top: -84px;
  padding-top: 100px;
}

.plan.red .plan-body::after {
  top: -28px;
  left: -25%;
  width: 135%;
  border-radius: 70% 36% 0 0 / 115px 65px 0 0;
  transform: rotate(4deg);
}

.plan.red .plan-body::before {
  background: rgba(235, 49, 46, 0.68);
  box-shadow:
    23px 9px 0 -1px rgba(235, 49, 46, 0.48),
    48px 1px 0 -2px rgba(235, 49, 46, 0.35);
}

/* GOLD CURVE */

.plan.gold .plan-body {
  margin-top: -85px;
  padding-top: 102px;
}

.plan.gold .plan-body::after {
  top: -16px;
  left: -12%;
  width: 124%;
  border-radius: 60% 50% 0 0 / 105px 88px 0 0;
  transform: rotate(-1deg);
}

.plan.gold .plan-body::before {
  background: rgba(207, 148, 20, 0.7);
  box-shadow:
    23px 9px 0 -1px rgba(207, 148, 20, 0.5),
    48px 1px 0 -2px rgba(207, 148, 20, 0.36);
}

/* GREEN CURVE */

.plan.green .plan-body {
  margin-top: -82px;
  padding-top: 99px;
}

.plan.green .plan-body::after {
  top: -20px;
  left: -18%;
  width: 126%;
  border-radius: 48% 64% 0 0 / 80px 108px 0 0;
  transform: rotate(-2deg);
}

.plan.green .plan-body::before {
  background: rgba(23, 159, 87, 0.68);
  box-shadow:
    23px 9px 0 -1px rgba(23, 159, 87, 0.49),
    48px 1px 0 -2px rgba(23, 159, 87, 0.36);
}

.plan-body h4,
.plan-body > p,
.plan-body ul,
.plan-btn {
  position: relative;
  z-index: 1;
}

.plan-body h4 {
  margin-top: 0;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.1rem;
}

.plan-body > p {
  margin-top: 8px;
  color: #777789;
  font-size: 0.76rem;
  line-height: 1.55;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin-top: 19px;
  list-style: none;
}

.plan li {
  display: flex;
  gap: 8px;
  color: #676779;
  font-size: 0.76rem;
  line-height: 1.48;
}

.plan li i {
  color: #35bb79;
}

.plan-btn {
  margin-top: auto;
  padding: 13px;
  border-radius: 11px;
  color: #ffffff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.plan.blue .plan-btn {
  background: linear-gradient(90deg, #12acd0, #194284);
}

.plan.purple .plan-btn {
  background: linear-gradient(90deg, #d477be, #79149b);
}

.plan.red .plan-btn {
  background: linear-gradient(90deg, #ff5d4f, #bf101b);
}

.plan.gold .plan-btn {
  background: linear-gradient(90deg, #e0b341, #8d5809);
}

.plan.green .plan-btn {
  background: linear-gradient(90deg, #27c77c, #08784d);
}

.addon {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(255, 146, 208, 0.25);
  border-radius: 15px;
  color: #e9d6ff;
  background: linear-gradient(
    135deg,
    rgba(255, 108, 192, 0.12),
    rgba(133, 97, 255, 0.1)
  );
}

.addon p {
  margin-top: 5px;
  color: #c6bad9;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* CONTACT + DONATE */

.contact-card,
.donate-card {
  max-width: 900px;
  margin: 22px auto 0;
  padding: 34px;
  border-radius: 24px;
}

.center {
  text-align: center;
}

.contact-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-option strong {
  display: block;
  margin-top: 4px;
}

.contact-option small {
  color: var(--muted);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.donate-box {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.donate-box h2 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.2rem;
}

.qr {
  min-height: 240px;
  display: grid;
  place-items: center;
  margin: 17px 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
}

.qr img {
  width: 100%;
  max-width: 205px;
  max-height: 205px;
  object-fit: contain;
}

.wallet {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

.wallet small {
  color: var(--muted);
}

.wallet code {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 8px;
  color: #efeeff;
  font-size: 0.68rem;
}

/* FOOTER */

.footer {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  color: #8c8aa2;
  font-size: 0.77rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Outfit, Arial, sans-serif;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 15px;
}

/* TABLET */

@media (max-width: 900px) {
  .navbar,
  .container,
  .footer {
    width: calc(100% - 32px);
  }

  .navbar {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 14px;
    border: 1px solid var

/* =========================================
   SAFE RESPONSIVE FIX — PASTE AT LAST
   Does not change desktop design or colors
========================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.navbar,
.footer,
.page-card,
.profile-card,
.service-card,
.about-card,
.info-card,
.contact-card,
.donate-card,
.plan,
.plan-top,
.plan-body,
.split > *,
.about-grid > *,
.services-grid > *,
.pricing-grid > * {
  min-width: 0;
}

/* Tablet + mobile */
@media (max-width: 900px) {
  .navbar,
  .container,
  .footer {
    width: calc(100% - 32px) !important;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }

  .nav-links.mobile-open a {
    padding: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .hero-card-wrap {
    width: 100%;
    max-width: 560px;
  }

  .about-grid,
  .services-grid,
  .split,
  .donate-grid {
    grid-template-columns: 1fr !important;
  }

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

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

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

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

  .copyright .btn {
    width: 100%;
    margin-left: 0;
  }

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

/* Phone */
@media (max-width: 560px) {
  .navbar,
  .container,
  .footer {
    width: calc(100% - 24px) !important;
  }

  .navbar {
    height: 72px;
  }

  .section {
    padding: 58px 0;
  }

  .page-main {
    padding: 28px 0 50px;
  }

  .hero {
    gap: 24px;
    padding: 30px 0 55px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .mini-stats strong {
    font-size: 0.72rem;
  }

  .mini-stats span {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .profile-card {
    padding: 18px;
  }

  .about-card {
    padding: 20px;
  }

  .info-card {
    min-height: 70px;
    padding: 11px 12px;
  }

  .service-card {
    min-height: 112px;
    gap: 13px;
    padding: 15px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .service-copy {
    padding-right: 22px;
  }

  .service-copy h3 {
    font-size: 0.92rem;
  }

  .service-copy p {
    font-size: 0.71rem;
    line-height: 1.48;
  }

  .page-card,
  .contact-card,
  .donate-card {
    padding: 18px 14px;
  }

  .page-head h1 {
    font-size: 2rem;
  }

  .page-head p {
    font-size: 0.82rem;
  }

  .split {
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-title h2 {
    font-size: 1.7rem;
  }

  .plan {
    width: 100%;
    min-height: 0;
  }

  .plan-top {
    min-height: 205px;
  }

  .plan-body {
    min-height: 0;
  }

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