
/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Fira Code', monospace, sans-serif;
  background-image: url("sand.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #e0e0e0;
  overflow-x: hidden;

  /* Page fade-in animation */
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.page-wrapper {
  padding-top: 100px; /* For sticky nav */
  width: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   HEADER: TOP NAVIGATION
   ========================================================================== */
.top-nav {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to right, #0b0b2b, #1b2735 70%, #090a0f);
  padding: 1rem 2rem;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-container a {
  text-decoration: none;
  color: #00ffe0;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffe0;
  text-align: left;
  white-space: nowrap;
}

/* Desktop Navigation */
.desktop-nav {
  flex-grow: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-block;
  min-width: 80px;
  text-align: center;
  padding: 0.6rem 0.6rem 0.4rem 1.6rem;
  font-size: 1rem;
  color: #00ffe0;
  background-color: #2c2c3d;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover {
  background-color: #00ffe0;
  color: #0b0b2b;
  transform: scale(1.05);
}

.nav-links a.active {
  background-color: #00ffe0;
  color: #0b0b2b;
  font-weight: bold;
}

/* Hover arrow */
.nav-links a::after {
  content: " →";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links a:hover::after {
  opacity: 1;
}

/* Social Icons */
.desktop-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem;
}

.desktop-socials img {
  max-width: 32px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.desktop-socials img:hover {
  opacity: 1;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999; 
  
  display: inline-block;
  padding: 0.75rem 1.25rem;
  
  background-color: #00ffe0; 
  color: #000;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  
  transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sticky-cta:hover {
    color: #fff;
    background-color: #004c43;
    transform: scale(1.05);
  }
}

.sticky-cta:active {
  transform: scale(0.95);
}


/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

.menu-toggle {
  display: inline-block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00ffe0;
  cursor: pointer;
}

.mobile-menu-list {
  display: none;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  background-color: #1b2735;
  padding: 1rem;
}

.mobile-menu-list a {
  color: #00ffe0;
  text-decoration: none;
  font-size: 1.1rem;
}

.mobile-menu-list a.active,
.mobile-menu-list a:hover {
  background: #00ffe0;
  color: #0b0b2b;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}

/* Hamburger button inside menu */
.mobile-menu-list .close-toggle {
  position: absolute;
  top: 2rem;
  left: 3rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00ffe0;
  cursor: pointer;
  z-index: 1001;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.mobile-socials img {
  width: 35px;
  height: 35px;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1205px) {
  .nav-links,
  .desktop-socials {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-menu-list {
    display: flex;
  }

  .site-title-mobile {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ffe0;
    text-align: right;
    white-space: nowrap;
  }

  .site-title-mobile a {
    text-decoration: none;
    color: #00ffe0;
  }

  .site-title {
    display: none;
  }

  .mobile-menu-list {
    display: none;
  }

  /* When toggled open */
  .mobile-menu-list.open {
    display: flex;

    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    justify-content: center;
    align-items: center;

    background-color: #0b0b2b;
    overflow-y: auto;
  }
}

@media (min-width: 1205px) {
  #mobile-nav,
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.6rem;
  }
}

@media (max-width: 480px) {
  .sticky-cta {
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  display: none;
}

/* Additional sections like site content, hero, testimonial, etc., will continue below */

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */
.site-content {
  margin-left: 0;
  flex: 1;
  padding: 1rem 2rem 2rem 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-content .content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #00ffe0; 
  color: #000;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #b3fff6; 
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  background-color: #2b5e89;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus {
  outline: 3px solid rgba(74, 144, 226, 0.4); 
  outline-offset: 2px;
}

.btn-secondary {
  background-color: transparent;
  color: #4a90e2; /* matches brand color */
  border: 2px solid #4a90e2;
  box-shadow: none;
  justify-content: center;
  align-items: center;
}

.btn-secondary:hover {
  background-color: #4a90e2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  background-color: #357ab7;
  border-color: #357ab7;
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:focus {
  outline: 3px solid rgba(74, 144, 226, 0.4);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .btn-secondary, .btn-centered {
    display: block;
    margin: 0.75rem auto;
    text-align: center;
  }
}

/* ==========================================================================
   HORIZONTAL TIME
   ========================================================================== */
.site-content-horizontal {
  margin-left: 0;
  flex: 1;
  padding: 1rem 2rem 2rem 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
}

.site-content h1, .site-content h2, .site-content h3 {
  color: #00ffe0;
}

/* ==========================================================================
   HOMEPAGE - TITLE CARD
   ========================================================================== */
.title-card {
  position: relative;
  background: linear-gradient(-135deg, #0b0b2b, #1b2735, #090a0f);
  color: #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem auto;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 960px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(-135deg, #1c1c29, #101029);
  padding: 2rem 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  animation: fadeIn 1s ease forwards;
}

.hero-title {
  font-size: 2.2rem;
  color: #00ffe0;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION BAND
   ========================================================================== */
.section-band {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  margin: 1rem auto;
  border-radius: 8px;
  background: linear-gradient(-135deg, #1c1c29, #101029);
  max-width: 960px;
  width: 100%;
}

.section-band.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CALLOUT BLOCK
   ========================================================================== */
.callout {
  background: #101026;
  border-left: 4px solid #00ffe0;
  border-right: 4px solid #00ffe0;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  font-size: 1.3rem;
  color: #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 255, 224, 0.2);
  max-width: 960px;
}

.callout a {
  color: #00ffe0;
}

/* ==========================================================================
   TESTIMONIAL CARDS
   ========================================================================== */
.testimonial {
  position: relative;
  background: #1c1c36;
  color: #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem auto;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 960px;
  width: 90%;
}

.testimonial p {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  justify-content: center;
  position: relative;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: bold;
  color: #999;
  margin-top: 0.5rem;
}

.testimonial .quote-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.3;
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
  pointer-events: none;
}

.testimonial .quote-start {
  top: 1rem;
  left: 1rem;
}

.testimonial .quote-end {
  bottom: 1rem;
  right: 1rem;
}


/* ==========================================================================
   SLIDING SCALE TIERS
   ========================================================================== */
.tier-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 2rem 0;
  text-align: center;
}

.tier-stack {
  gap: 0.8rem;
  transition: transform 0.5s ease;
  max-width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tier-info {
  max-width: 320px;
  background: linear-gradient(135deg, #1c1c29, #101029);
  padding: 1rem;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.4;
  transition: opacity 0.3s ease;
  flex: 1 1 300px;
  box-shadow: 0 0 12px 4px #00ffe033;
  align-self: center;
}

.tier-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 2rem;
  padding-right: 3rem;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  margin: 1rem;
  font-size: 1.2rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tier-card:hover {
  box-shadow: none;
}

.tier-card .tier-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c2c2c2;
  margin-right: 0.5rem;
}

.tier-card .tier-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.tier-card.selected::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #fff;
  transition: all 0.3s ease;
}

.tier-solidarity {
  background: #163d78;
}
.tier-sustaining {
  background: #1c7541;
}
.tier-supportive {
  background: #802321;
}
.tier-card.tier-solidarity:hover {
  background: #0a1f3d;
}
.tier-card.tier-sustaining:hover {
  background: #0f4224;
}
.tier-card.tier-supportive:hover {
  background: #571817;
}

.section-header {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  color: #00ffe0;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SERVICES MENU
   ========================================================================== */
.services-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 960px;
}

.services-menu a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.services-menu a:hover {
  background: #444;
  color: #00ffe0;
}

/* Styled card */
.services-card {
  background: #101026;
  border: 3px solid #00ffe0;
  padding: 1rem;
  font-size: 1.3rem;
  color: #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 255, 224, 0.2);
  max-width: 580px;
  margin: 1rem auto 0 auto;
}

.services-card ul {
  list-style: none;
}

/* Re-worked CSS for 8.24.25 updates, remove older once confirmed working */

.services-grid {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers the cards inside the section */
  gap: 1.5rem;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 0.85rem;
  padding: 1.5rem;

  width: 75%;            /* 70–80% of parent width */
  max-width: 720px;      /* optional: keeps it from getting too wide on large screens */
  margin: 0 auto;        /* extra centering insurance */
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.service-card h3 {
  margin: 0 0 .5rem 0;
  font-size: 1.35rem;
}

.service-po {
  margin: 0 0 .75rem 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.service-deliv h4 {
  margin: .75rem 0 .25rem;
  font-size: .95rem;
}

.service-deliv ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.service-card .btn {
  margin-top: 1rem;
  align-self: center;     /* centers the button inside the card */
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .service-card {
    background: #0f1115;
    border-color: #222;
    box-shadow: none;
  }
}

/* Small screens: let cards expand full width */
@media (max-width: 600px) {
  .service-card {
    width: 95%;
    max-width: none;
  }
}



/* ==========================================================================
   BLOCKQUOTE
   ========================================================================== */
blockquote {
  border-left: 4px solid #00ffe0;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  font-style: italic;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 960px;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: bold;
  color: #999;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio-card {
  background: #101026;
  border: 3px solid #00ffe0;
  padding: 1rem;
  font-size: 1.3rem;
  color: #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 255, 224, 0.2);
  max-width: 85%;
  margin: 1rem auto;
}

.custom-icon-list {
  list-style: none;
  padding-left: 0;
}

.custom-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.custom-icon-list a {
  color: #00ffe0;
}

.bullet-icon img {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  transform: translateY(-5px);
  flex-shrink: 0;
}

.cta-footer {
  text-align: center;
  background: linear-gradient(-135deg, #00ffe0, #004c43);
  color: #0f1115; 
  padding: 3rem 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.cta-footer .section-header {
  color: #0f1115;
  margin-bottom: 0.5rem;
}

.cta-footer .callout {
  margin: 0.5rem auto 1.5rem;
  max-width: 640px;
  font-size: 1.1rem;
  background: #0f1115;
  color: #fff;
}

.cta-footer .btn-primary {
  background-color: #0f1115;
  color: #ccfff9;
  font-weight: 700;
  border: none;
  border-radius: 0.6rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.cta-footer .btn-primary:hover {
  background-color: #1c1c29; 
  color: #00ffe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* 1) Global: make wrapping super forgiving on long links/words */
.custom-icon-list li,
.portfolio-card p,
.portfolio-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* 2) Mobile: stop the parent from clipping text/shadows */
@media (max-width: 768px) {
  .section-band {
    overflow: visible;            /* was hidden → caused right-edge clipping */
  }
}

/* 3) Give the card a touch more breathing room on the right */
@media (max-width: 768px) {
  .portfolio-card {
    padding-right: clamp(1rem, 4vw, 1.5rem);
    padding-left: clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;       /* ensure padding stays inside width */
    max-width: 100%;
    position: relative;
    z-index: 0;                   /* content layer */
  }
}

/* 4) If your cyan rails are pseudo-elements, push them behind content
      and pull them slightly inward on small screens so they don't overlap text */
@media (max-width: 768px) {
  .portfolio-card::before,
  .portfolio-card::after {
    z-index: -1;                  /* behind text */
    pointer-events: none;
    inset: 8px;                   /* reduce to give text more room */
  }
}

.custom-icon-list .project-item {
  display: block;
  margin-left: 0.25rem;
}

.custom-icon-list .project-item a,
.custom-icon-list .project-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.custom-icon-list .project-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85); /* adjust if on dark bg */
}

/* ==========================================================================
   PRICING PAGE ICON
   ========================================================================== */
.pricing-icon {
  display: flex;
  border-radius: 20%;
  overflow: hidden;
  top: 0.5rem;
  z-index: 0;
  padding: 1rem;
  object-fit: fill;
}

.pricing-icon img {
  width: 80px;
  height: 80px;
  object-fit: fill;
  opacity: 0.6;
  background: #9df2e8;
  padding: 0.7rem;
  border-radius: 55%;
}

.section-header-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

/* Icon in top-left corner of section */
.section-icon {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  padding: 0.5rem;
  width: 170px;
  height: 170px;
  z-index: 1;
}

.section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Hide pricing icon on small screens */
@media (max-width: 810px) {
  .pricing-icon {
    display: none;
  }
}

/* ==========================================================================
   Pricing Page Updates
   ========================================================================== */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
  margin:2rem 0;
}

.pricing-card{
  position:relative;
  border-radius:0.85rem;
  padding:1.5rem;
  color:#0f1115;
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow:hidden;              
  min-height: 320px;           
}

.pricing-card h2{ margin:0 0 .25rem 0; }
.pricing-card .price{ font-size:1.25rem; font-weight:700; margin:.25rem 0 .5rem; color:#0f1115; }
.pricing-card .who{ font-size:.95rem; margin:0 0 1rem; color:rgba(15,17,21,.8); }
.pricing-card p{ margin:.35rem 0; }

/* ===== Gradients per tier (a→b, b→c, c→d) ===== */
/* a = #00ffe0, b = #00ccb3, c = #009988, d = #007766 */
.pricing-card.solidarity {
  background: linear-gradient(135deg, #020024, #090979);
  color: #E0E0E0;
}

.pricing-card.sustaining {
  background: linear-gradient(135deg, #090979, #00D4FF);
}

.pricing-card.supportive {
  background: linear-gradient(135deg, #00D4FF, #C7EAF0);
  color: #020024;
}

.pricing-card.supportive h3 {
  color: #020024;
}

/* Global default for all cards */
.pricing-card,
.pricing-card .section-header,
.pricing-card .price,
.pricing-card .who,
.pricing-card p,
.pricing-card li {
  color: #0f1115;
}

/* Override specifically for solidarity card */
.pricing-card.solidarity,
.pricing-card.solidarity .section-header,
.pricing-card.solidarity .price,
.pricing-card.solidarity .who,
.pricing-card.solidarity p,
.pricing-card.solidarity li {
  color: #E0E0E0;
}


.donate{ margin-top:1rem; text-align:center; }
.donate img{
  width:120px; height:auto;
  border-radius:6px;
  transition:transform .2s;
}
.donate img:hover{ transform:scale(1.05); }
.donate p{ margin:.35rem 0 0; }

.pricing-card.popular{
  border:2px solid #00ffe0;
  box-shadow:0 8px 24px rgba(0,255,224,.25);
}

/* ribbon */
.pricing-card.popular .ribbon{
  --ribbon-bg:#0f1115;
  --ribbon-fg:#00ffe0;

  position:absolute;
  top:27px;
  right:-58px;
  width:200px;
  text-align:center;
  transform:rotate(45deg);
  background:var(--ribbon-bg);
  color:var(--ribbon-fg);
  font-weight:800;
  letter-spacing:.03em;
  padding:.35rem 0;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
  pointer-events:none;
}

.pricing-card.popular .ribbon::before,
.pricing-card.popular .ribbon::after{
  content:"";
  position:absolute;
  top:100%;
  border-style:solid;
  border-width:6px;
  border-color: #0a0c12 transparent transparent transparent; 
}
.pricing-card.popular .ribbon::before{ left:12px; }
.pricing-card.popular .ribbon::after{ right:12px; }

@media (prefers-reduced-motion:reduce){
  .pricing-card.popular{ transition:none; }
  .pricing-card.popular .ribbon{ transition:none; }
}

.perk-list{
  margin:.5rem 0 0;
  padding-left:1.1rem;
  list-style:disc;
}
.perk-list li{ margin:.25rem 0; }


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */



/* ==========================================================================
   RESPONSIVE ENHANCEMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    padding-top: 5rem;
  }

  .section-icon {
    width: 80px;
    height: 80px;
  }

  .section-text {
    width: 100%;
  }

  .callout {
    margin: 1rem;
  }

  .services-card {
    margin: 1rem auto;
  }

  .tier-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    justify-content: center;
  }

  .tier-stack {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-start;
  }

  .tier-info {
    max-width: 80%;
    margin-top: 0.5rem;
    text-align: center;
    max-height: 120px;
    padding: 0.75rem;
  }

  .tier-card {
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    justify-content: center;
  }

  .tier-card.selected::after {
    right: 0.5rem;
    top: auto;
    bottom: auto;
    transform: none;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #fff;
    border-bottom: none;
  }

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

  .services-menu a {
    width: 80%;
    text-align: center;
    padding: 1rem;
  }

  .quote-text {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}
