  /* ================= GLOBAL RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* while loader is visible */

  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ================= END OF GLOBAL RESET ================= */


/* ================= COLOURS ================= */
.pruple { color: #7700ff; }
/* ================= END OF COLOURS ================= */


/* ================= TYPOGRAPHY ================= */
h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
}

p {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

button {
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* ================= END OF TYPOGRAPHY ================= */


/* ================= INPUTS ================= */
input, select, textarea {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #7a5cff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(96, 0, 181, 0.1);
}

textarea {
  height: 100px;
  resize: none;
}

label {
  margin-top: 18px;
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
/* ================= END OF INPUTS ================= */


/* ================= FADE EFFECT ================= */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-fade.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= END OF FADE EFFECT ================= */


/* ================= LOADING SCREEN ================= */

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 20px; /* prevents edge clipping */
  width: 100%;
}

.typing-container {
  display: inline-block;
  max-width: 100%;
}

.typing-text {
  color: white;
  font-size: clamp(20px, 6vw, 50px);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 2pxß;
  display: inline-block;
  border-right: 3px solid white;
  animation: blink 0.7s step-end infinite;
  max-width: 100%;
}

.purple {
  color: #7700ff;
}

@keyframes blink {
  0%, 100% { border-color: white; }
  50%       { border-color: transparent; }
}

#loader-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;        /* safe zone on small screens */
  box-sizing: border-box;
}

#loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  --uib-size: 60px;
  --uib-color: rgb(77, 0, 194);
  --uib-speed: 1.5s;
  --dot-size: calc(var(--uib-size) * 0.17);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
  animation: smoothRotate calc(var(--uib-speed) * 1.8) linear infinite;
  background: transparent !important;
}

.dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  animation: rotate var(--uib-speed) ease-in-out infinite;
}

.dot::before {
  content: '';
  height: var(--dot-size);
  width: var(--dot-size);
  border-radius: 50%;
  background-color: var(--uib-color);
  transition: background-color 0.3s ease;
}

.dot:nth-child(2),
.dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.835 * 0.5);
}

.dot:nth-child(3),
.dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.668 * 0.5);
}

.dot:nth-child(4),
.dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.501 * 0.5);
}

.dot:nth-child(5),
.dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.334 * 0.5);
}

.dot:nth-child(6),
.dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.167 * 0.5);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  65%, 100% { transform: rotate(360deg); }
}

@keyframes smoothRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================= END OF LOADING SCREEN ================= */


/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2000;
}

.nav-center h3 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
/* ================= END OF NAVBAR ================= */


/* ================= HAMBURGER ================= */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
/* ================= END OF HAMBURGER ================= */


/* ================= DROPDOWN ================= */
.dropdown-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 220px;
  background: #111;
  display: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  z-index: 3000;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  display: flex;
}

.dropdown-menu a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #7a5cff;
  padding-left: 20px;
}
/* ================= END OF DROPDOWN ================= */



/* ================= HERO CSS ================= */

.hero-wrap {
  background: #111;
  padding: 56px 24px 0;
  overflow: hidden;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertically centers content */
  width: 100%;
  min-height: 100vh;       /* fills the whole screen */
  padding-top: 60px;       /* clears the 60px fixed navbar */
  margin: 0;
  box-sizing: border-box;
}

.hero-headline {
  text-align: center;
}

.hero-headline h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 1000px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.hero-headline h1 .purple {
  background: linear-gradient(90deg, #a78bfa, #7c5cfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration-color: rgba(160, 120, 255, 0.35);
}

.hero-headline p {
  color: #aaa;
  font-size: clamp(14px, 1.8vw, 18px);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  margin-top: 24px;
  padding: 12px 30px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
  background: #6100d6;
  transform: translateY(-2px);
}

.hero-btn:active {
  transform: translateY(0);
}

.hero-cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  height: 210px;
}

.hcard {
  width: 130px;
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.card-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-cards .hcard:nth-child(1) {
  transform: rotate(-10deg) translateY(20px);
  filter: brightness(0.55);
}
.hero-cards .hcard:nth-child(2) {
  transform: rotate(-5deg) translateY(8px);
  filter: brightness(0.75);
  width: 150px;
  height: 190px;
}
.hero-cards .hcard:nth-child(3),
.hero-cards .hcard.hcard--center {
  transform: rotate(0deg) translateY(0px);
  filter: brightness(1);
  width: 170px;
  height: 205px;
  border-radius: 16px;
}
.hero-cards .hcard:nth-child(4) {
  transform: rotate(5deg) translateY(8px);
  filter: brightness(0.75);
  width: 150px;
  height: 190px;
}
.hero-cards .hcard:nth-child(5) {
  transform: rotate(10deg) translateY(20px);
  filter: brightness(0.55);
}

.hero-cards .hcard:hover {
  filter: brightness(1) !important;
  transform: rotate(0deg) translateY(-10px) scale(1.04) !important;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-wrap {
    padding-top: 60px;
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }

  .hero-cards {
    height: 160px;
    gap: 8px;
  }


  .hcard { width: 80px; height: 120px; border-radius: 10px; }
  .hero-cards .hcard:nth-child(2),
  .hero-cards .hcard:nth-child(4) { width: 95px; height: 135px; }
  .hero-cards .hcard:nth-child(3),
  .hero-cards .hcard.hcard--center { width: 110px; height: 150px; }
  .hero-headline h1 {font-size: 50px;}
  .hero-headline p {font-size:19px;}

  .card-label { font-size: 9px; }
}

/* ================= END OF HERO ================= */


/* ================= HOME SECTION ================= */
#home {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  width: 100%;
}

.p-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.p-container p {
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: flyUp 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes flyUp {
  to { opacity: 1; transform: translateY(0); }
}
/* ================= END OF HOME SECTION ================= */

/* ================= SERVICES ================= */
#services {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-header {
  max-width: 800px;
  margin: 0 auto;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.services-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.card {
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.card:hover  { background: #7a5cff; transform: translateY(-3px); }
.card.active { background: #7a5cff; }

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  text-align: left;
}

/* Shared styles for ALL videos */
.video-box iframe {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  display: block;
}

/* ── Individual video sizes — adjust these ── */
.video {
  width: 100%;
  height: 500px; /* was 400px */
}

.branding, .business, .events, .social {
  width: 75%;    /* was 60% */
  aspect-ratio: 9/16;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 901px) {
  #services {
    padding: 100px 20px; /* was 80px */
    max-width: 1400px;   /* was 1200px */
  }

  .services-header h2 {
    font-size: 52px; /* was 42px */
  }

  .content-wrapper {
    gap: 60px;
  }

  .video-box {
    flex: 1.4; /* was 1.2 */
  }

  .text-box {
    flex: 1;
    max-width: 550px; /* was 650px */
  }

  .text-box h3 {
    font-size: 40px; /* was 34px */
  }

  .text-box p {
    font-size: 18px; /* was 17px */
  }

  .video{
    height: 280px;
    width: 100%;
  }
}

.text-box h3 {
  font-size: 34px;
  margin-bottom: 15px;
  text-align: center;
}

.text-box p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .content-wrapper { 
    flex-direction: column; 
    text-align: center;
    gap: 30px;
  }
  .text-box  { max-width: 100%; }
  .video-box { max-width: 100%; width: 100%; }
  .text-box h3 { font-size: 24px; }
  .text-box p  { font-size: 16px; }
  .services-header h2 { font-size: 32px; }
  .video      { height: 300px; }
  
  .social, .business, .events, .branding {
    width: 75% !important;
  }
}

@media (max-width: 500px) {
  .services-header h2 { font-size: 28px; }
  .services-header p  { font-size: 16px; }
  .card { font-size: 13px; padding: 10px 16px; }

  .social, .business, .events, .branding {
    width: 85% !important;
  }
}
/* ================= END OF SERVICES ================= */


/* ================= REVIEW SECTION ================= */
.section {
  width: 100%;
  font-family: sans-serif;
  padding: 80px 40px;
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: #888;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.main-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.stat-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #6100d6;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 8px;
}

.stat-card p {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* ── Review cards ── */
.reviews-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.review-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid #ebebeb;
  background: #fff;
  display: flex;
  align-items: stretch;
  width: 88px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.review-item:hover,
.review-item.open {
  width: 100%;
  border-color: #ddd;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.stars-col {
  flex-shrink: 0;
  width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 10px;
  border-right: 1px solid #f0f0f0;
  background: #fafafa;
}

.stars-vert {
  color: #f5a623;
  font-size: 15px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 5px;
}

.stars-col .label {
  font-size: 9px;
  color: #bbb;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-item .content {
  flex: 1;
  padding: 26px 30px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  white-space: normal;
  min-width: 0;
}

.review-item:hover .content,
.review-item.open .content {
  opacity: 1;
  transform: translateX(0);
}

.review-item .content h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.stars-inline {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 3px;
}

.review-item .content p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

.review-item .content h3 {
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ── Mobile ── */
@media (max-width: 800px) {
  .section {
    padding: 60px 16px;
  }

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

  .stat-card {
    padding: 18px 10px; /* was 22px 16px */
    min-height: 140px;
  }

  .stat-card h4 {
    font-size: 0.7rem;
    letter-spacing: 0.03em; /* was 0.07em — tight spacing was causing overflow */
  }


  .stat-card p {
    font-size: 0.72rem;
  }

  .stat-number {
    font-size: 1.8rem; /* was 2.2rem */
  }

  .review-item {
    width: 100% !important;
    flex-direction: column;
    height: 66px;
    transition: height 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s ease;
  }

  .review-item.open {
    height: auto;
    min-height: 180px;
  }

  .stars-col {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
    min-height: 66px;
    flex-shrink: 0;
  }

  .stars-vert {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 3px;
  }

  .stars-col .label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 0;
    font-size: 10px;
  }

  .stars-col::after {
    content: "›";
    font-size: 22px;
    color: #ccc;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .review-item.open .stars-col::after {
    transform: rotate(90deg);
  }

  .review-item .content {
    opacity: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: opacity 0.3s ease 0.1s, max-height 0.4s ease, padding 0.3s ease;
    transform: none !important;
  }

  .review-item.open .content {
    opacity: 1;
    max-height: 300px;
    padding: 18px 20px;
  }
}
/* ================= END OF REVIEW SECTION ================= */


/* ================= COMPANY SLIDER ================= */
.companies-block {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.companies-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  margin-bottom: 24px;
}

.slider-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 860px;
}

.slider-outer::before,
.slider-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.slider-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.slider-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: slide 22s linear infinite;
}

.logo-pill {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;  /* give the big image some breathing room */
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}



.logo-img {
  width: 80px;    /* 150px is quite large for a logo slider */
  height: 80px;
  object-fit: contain;
}



@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ================= END OF COMPANY SLIDER ================= */


/* ================= PRICING SECTION ================= */

.pricing-section {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: #fff;
  width: 100%;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-title .pruple {
  color: #6100d6;
}

.pricing-subtitle {
  color: #cbcbcb;
  margin-bottom: 50px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* --- Base card --- */
.pricing-card {
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  border-color: #e0e0e0;
}

.pricing-card-main{
  background:#6100d6;
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid #6100d6;
  box-shadow: 0 2px 12px rgb(157, 66, 255);
  transition: all 0.25s ease;
  text-align: left;

}

.pricing-card-main h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 0 20px;
}

.price-main{
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-main span {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 20px;
}

/* --- Price block --- */
.price {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price span {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-top: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* --- Featured card --- */
/* --- Featured card — highlight removed --- */
.pricing-card.featured {
  background: white;
  border-color: #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transform: none;
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  border-color: #e0e0e0;
}

.pricing-card.featured h3 {
  color: #888; /* back to normal grey */
}

.pricing-card.featured .price {
  color: #aaa;
}

.pricing-card.featured .price span {
  color: #111;
}

.badge.popular {
  background: #f0e6ff; /* match the 'best value' badge style */
  color: #6100d6;
}

/* --- CTA --- */
.pricing-cta {
  margin-top: 52px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.badge.popular {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.badge.value {
  background: #f0e6ff;
  color: #6100d6;
}

.btn-primary:hover {
  background: #6100d6;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 500px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 32px;
  }
}

/* ================= END OF PRICING SECTION ================= */




/* ================= CONTACT FORM ================= */

#started{
  background-color: #111;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;


}

.container {
  max-width: 500px;
  margin: 80px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}

.container button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background: black;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.container button:hover {
  background: #7a5cff;
  transform: translateY(-2px);
}

.container button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .container {
    margin: 20px 15px;
    padding: 20px;
    border-radius: 10px;
  }
}

@media (min-width: 900px) {
  .container {
    max-width: 700px;
    padding: 55px 60px;
  }
}
/* ================= END OF CONTACT FORM ================= */


/* ================= FOOTER ================= */
.footer-section {
  width: 100%;
  background: linear-gradient(135deg, #111, #111);
  color: #ffffff;
  padding: 80px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid #7a5cff;
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #929292;
  transform: translateX(4px);
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover { color: #929292;
  ; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover { transform: translateX(4px); }
.social-link:hover span {   color: #929292;}
.social-link:hover img { filter: brightness(1.5); }

.social-icon-img {
  width: 32px;
  height: 32px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgb(255,255,255);
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-bottom p,
.rights {
  margin: 2px 0;
  line-height: 1.9;
  color: #ffffff;
}

.morks-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin-top: 0;
}

.footer-Morks {
  font-size: 1rem;
  color: #ffffff;
}

.Morkslogo {
  width: 28px;
  height: auto;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .social-link { justify-content: center; }
}
/* ================= END OF FOOTER ================= */