/* hi yes this is all of my css, im usually very organzied but sometimes i can be messy. no this is not ai. sometimes my style changes, sometimes i use a layout i really like. yes ive been coding for like 6-7 years. yes i know other languages such as javascript, python, sql, and a plethora of libraries BUT THE LIBRARIES ARE BORINGGGGGGGG. i like to create stuff from scratch, organize it well (maybe weirdly to u). plzzzzzz dont hate on my work, im a genuine human with feelings and dreams. thanks for reading this anyways u nerd <33*/
/* ==========================================================================
   Global Resets & Base Styles
========================================================================== */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body {
  letter-spacing: 0.5px;
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Parkinsans", sans-serif;
}
h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "ROND" 0;
}
h2, h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}
p, ul li {
  font-family: "Parkinsans", sans-serif;
  font-weight: 300;
  font-style: normal;
}
a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}
:root {
  --first-bg-landing: #0C1A1D;
  --second-bg-landing: #050A0B;
  --lighter-bg: #0b0c10;
  --lighter-lighter-bg: #1b1c22;
  --card: #31333a;
  --text: #e8e8ea;
  --text-darker: #18503c;
  --muted: #9aa0aa;
  --muted-less-darker: #8b9099;
  --muted-darker: #77797e;
  --muted-even-darker: #292a2d;
  --features-bg: #f3eef8;
  --primary-color: #3cc997;
  --primary-color-darker: #24a15b;
  --primary-color-hover: #26ad7e;
  --primary-color-less-light: #5adbad;
  --primary-color-lighter: #86f5ce;
  --card-color: #131A2B;
  --light-shadow-color: rgba(255, 255, 255, 0.856);
  --primary-color-shadow: rgba(60,201,151,0.4);
  --shadow-color: rgba(0, 0, 0, 0.7);
  --hover-shadow-color: rgba(0, 0, 0, 0.9);
  --header-height: 85px;
}
/* ==========================================================================
   Header / Navbar
========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--hover-shadow-color);
  backdrop-filter: blur(12px);
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tiny-logo {
  height: 35px;
  margin-right: 8px;
}
.logo .mainlogo {
  font-family: Parkinsans;
  font-size: 2em;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-menu {
  display: none;
}
.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav-list li a {
  position: relative;
  padding: 10px 20px;
  letter-spacing: .3px;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 250;
  font-size: 1.2em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: var(--primary-color);
}
.nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-list li a:hover::after,
.nav-list li a.active::after {
  width: 100%;
}

.header-cta .cta-btn {
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  margin-left: 0rem;
  margin-top: 1rem;
}
.header-cta .cta-btn:hover {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.cta-btn i {
  transition: transform 0.3s ease;
}
.cta-btn:hover i {
  transform: translateX(5px) scale(1.2);
}
@media (max-width: 600px) {
.header-container {
    padding: 0 14px;
  }
  .tiny-logo {
    height: 25px;
    margin-right: 4px;
  }
  .logo .mainlogo {
    font-size: 1.25rem;
  }
  .header-cta .cta-btn {
    padding: 8px 14px;
    font-size: 0.95rem;
    margin-top: 0;
    margin-right: 20px;
  }
}
@media (max-width: 400px) {
  .tiny-logo {
    height: 21px;
    margin-right: 1px;
  }
}
@media (min-width: 1125px) {
  .logo .mainlogo {
    font-size: 2.3em;
  }
  .tiny-logo {
    margin-right: 6px;
  }
}
@media (min-width: 768px) {
  .nav-menu {
    display: block;
    position: static;
  }
  .nav-list {
    flex-direction: row;
    gap: 10px;
  }
  .nav-list li a {
    padding: 10px 12px;
    font-size: 1.1em;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
 .tiny-logo {
  height: 30px;
  margin-right: 5px;
}
.logo .mainlogo {
  font-family: Parkinsans;
  font-size: 1.5em;
}
.nav-list li a {
  padding: 10px 10px;
  letter-spacing: .2px;
  font-size: 1.1em;
}
.header-cta .cta-btn {
  padding: 5px 10px;
}
}
@media (min-width: 700px) and (max-width: 1049px) {
  .header-cta .cta-btn {
    margin-top: 0;
    margin-right: 14px;
  }
}

@media (min-width: 1050px) and (max-width: 1450px) {
  .header-cta .cta-btn {
    margin-top: 0;
    margin-right: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) and (orientation: portrait) {
    .hero-mobile .hero-description {
      font-size: 1.3rem !important;
    }
    .why-choose-section {
      padding-top: 30px !important;
    }
  }
@media (max-width: 965px) {
  .header-cta .cta-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: inline-flex;
    align-items: center;
  }
}

/* ==========================================================================
   Hero Section/Landing Page
========================================================================== */
.hero-mobile {
  padding-bottom: 45px;
  padding-left: 40px;
  text-align: left;
  background:
  linear-gradient(rgba(8, 10, 16, 0.08), rgba(8, 10, 16, 0.08)),
  url("images/SummitSitesGlitterBG.png") center center / cover no-repeat;
  position: relative;
  z-index: 1;
  border-bottom: 5px solid var(--card);
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
}
.hero-text {
  padding-left: 40px;
  width: 100%;
  max-width: 680px;
}
.hero-title {
  font-size: 3em;
  padding-bottom: 20px;
  padding-top: 4rem;
  font-weight: 440;
  color: var(--primary-color-hover);
}
.hero-description {
  font-size: 1.05rem;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 95%;
  line-height: 1.75;
  color: var(--muted-even-darker);
}
.highlight{
  background: linear-gradient(90deg, var(--primary-color-hover), var(--primary-color-hover));
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.highlight-lighter{
  background: linear-gradient(90deg, var(--primary-color-hover), var(--primary-color-hover));
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 1.15rem;
}
.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 7px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  margin-top: 1rem;
  margin-bottom: 15px;
}
.cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-color-hover);
  border: 2px solid var(--primary-color-hover);
  font-weight: 800;
  letter-spacing: 0.4px;
  text-shadow: 0 0 0.01px currentColor;
}
.cta-btn i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.cta-btn:hover i {
  transform: scale(1.2);
}
.hero-png {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 5px;
}
@media (min-width: 576px) {
  .hero-container { 
    padding: 30px 5px; 
  }
}
@media (max-width: 767px) {
  .hero-title {
    margin-top: 10px;
  }
}
@media (max-width: 964px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .hero-text {
    max-width: 100%;
    width: 100%;
    margin: auto;
    margin-left: 3rem;
  }
  .hero-mobile .hero-title {
    font-size: 3.2em;
    margin-top: 1.5rem;
  }
  .hero-mobile .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
    width: 80%;
    line-height: 1.85;
  }
  .cta-btn {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .hero-png {
    max-width: 90%;
  }
}
@media (min-width: 965px) {
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
  }
  .hero-png {
    flex: 1;
    max-width: 60%;
    height: auto;
    margin-top: 6rem;
  }
  .hero-mobile .hero-description {
    max-width: 100%;
}
}
@media (min-width: 965px) and (max-width: 1000px) {
  .hero-mobile .hero-title {
    font-size: 2.1em;
}
.hero-mobile .hero-description {
    max-width: 100%;
    font-size: 1.12rem;
}
}
@media (min-width: 1001px) and (max-width: 1199px) {
  .hero-mobile .hero-title {
    font-size: 2.1em;
}
.hero-mobile .hero-description {
    font-size: 1.05rem;
}
}
@media (min-width: 1200px) and (max-width: 1649px) {
  :root {
    --header-height: 80px;
  }
  .hero-container {
    justify-content: center;
    gap: 5px;
  }
  .hero-png {
    width: 100%;
    max-width: 650px;
    flex: 0 0 650px;
  }
  .hero-mobile .hero-title {
    font-size: 2.45em;
  }
  .hero-mobile .hero-description {
    max-width: 85%;
  }
}
@media (min-width: 1600px) {
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }

  .hero-png {
    width: 100%;
    max-width: 760px;
    flex: 0 0 760px;
  }

  .hero-mobile .hero-title {
    font-size: 2.85em;
  }

  .hero-mobile .hero-description {
    font-size: 1.12rem;
    max-width: 85%;
  }
}
@media (min-width: 2100px) {
  .hero-container {
    max-width: 1500px;
    gap: 5rem;
  }

  .hero-text {
    max-width: 720px;
    flex-basis: 720px;
  }

  .hero-png {
    max-width: 720px;
    flex-basis: 720px;
  }

  .hero-mobile .hero-description {
    max-width: 100%;
    font-size: 1.15rem;
  }
}
@media (max-width: 576px) {
  .hero-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-text {
    padding-left: 0;
    max-width: 95%;
  }
  .hero-container { 
    padding: 0px; 
  }
  .hero-mobile, .hero-title {
    font-size: .9rem;
    word-spacing: -4px;
  }
  .hero-mobile, .hero-description{
    word-spacing: .1px;
  }
  .highlight-lighter{
    font-size: 1.45rem;
  }
}
@media (max-width: 472px) {
  .hero-text {
    max-width: 97%;
  }
  .hero-mobile, .hero-title {
    font-size: .8rem;
    word-spacing: -5px;
  }
  .highlight-lighter{
    font-size: 1.35rem;
  }
}

/* ==========================================================================
  About Us Section
========================================================================== */
.about-section {
  background: var(--lighter-bg);
  color: var(--text);
  padding: clamp(4rem, 6vw, 7rem) clamp(1.5rem, 5vw, 6rem);
}
.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.AzelynImage {
  display: block;
  width: 100%;
  max-width: 430px;
  min-width: 280px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(66, 214, 168, 0.06);
  justify-self: center;
  align-self: center;
  background: #11131a;
}

@media (max-width: 1100px) {
  .AzelynImage {
    max-width: 380px;
  }
}

@media (max-width: 900px) {
  .AzelynImage {
    max-width: 420px;
    min-width: 0;
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .AzelynImage {
    width: min(100%, 340px);
    max-width: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }
}
.eyebrow {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about-copy .accent {
  color: var(--primary-color);
}
.about-copy p {
  font-size: 1.05rem;
  max-width: 52ch;
  margin-top: 2.5rem;
  line-height: 1.7;
}
.about-copy .muted {
  color: var(--muted);
  margin-top: 0.75rem;
}
.about-stats {
  max-width: 1400px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 260px));
  justify-content: center;
  gap: 1rem;
}
.stat {
  width: 100%;
  min-height: 165px;
  background: linear-gradient(180deg, #181b24, #11131a);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary-color);
}
.stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    max-width: 520px;
  }
}
@media (max-width: 520px) {
  .about-stats {
    gap: 0.85rem;
  }
  .stat {
    min-height: 145px;
    padding: 1.25rem 0.85rem;
  }
}
/* ==========================================================================
  Oregon Section
========================================================================== */
.oregon-section {
  background: linear-gradient(to bottom, var(--lighter-bg), #0e1117);
  padding: 4rem 1.5rem 5rem 1.5rem;
  text-align: center;
  position: relative;
}
.oregon-text {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  opacity: 0.8;
}
.oregon-section img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.95;
  transition: 
    transform 0.4s ease,
    filter 0.4s ease,
    opacity 0.4s ease;
}
.oregon-section img:hover {
  transform: scale(1.08);
  opacity: 1;
}
@media (max-width: 480px) {
  .oregon-section {
    padding: 3rem 1rem 4rem 1rem;
  }
  .oregon-section img {
    width: 110px;
  }
}

/* ==========================================================================
   3 Features / Everything Your Website Needs Section
========================================================================== */
.combined-showcase-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 20px;
}
.combined-showcase-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}
.combined-showcase-subtext {
  font-size: 1.05rem;
  color: var(--muted-even-darker);
  opacity: 0.75;
}
.combined-showcase-section{
  background:
  linear-gradient(rgba(8, 10, 16, 0.1), rgba(8, 10, 16, 0.1)),
  url("images/SummitSitesGlitterBG.png") center center / cover no-repeat;
  padding: 10rem 0;
  border-top: 5px solid var(--primary-color-hover);
  border-bottom: 5px solid var(--primary-color-hover);
}
.feature-icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}
.feature-icon-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px); 
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color-less-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.feature-icon-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-color-hover);
}
.feature-icon-card p {
  color: var(--card-color);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (min-width: 851px) and (max-width: 1000px) {
  .feature-icons-row {
    gap: 20px;
    margin-top: 60px;
    padding: 10px;
  }
  .feature-icon-card {
    max-width: 200px;
    padding: 25px 15px;
  }
  .feature-icon-card h4 {
    font-size: 1.1rem;
  }
  .feature-icon-card p {
    font-size: 0.85rem;
  }
  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 850px) {
  .feature-icon-card {
    flex: 0 0 100%;
    max-width: 80%;
  }
  .feature-icon-card p {
  width: 75%;
  margin: auto;
}
}

/* ==========================================================================
  Why Choose Us Section
========================================================================== */
.why-choose-section {
  background-color: var(--lighter-bg);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
}
.why-choose-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%; 
  margin: 0;
  padding: 0;
}
.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease-in-out;
}
.feature-card {
  flex: 0 0 70vw;
  min-width: 70vw;
  margin: 50px 0 100px 0;
  display: flex;
  flex-direction: row;
  background-color: var(--card-color);
  border-radius: 20px;
  overflow: hidden;
}
.feature-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-darker);
  padding: 0;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-text {
  flex: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 24px;
  text-align: left;
}
.feature-text h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-text p {
  font-size: 16px;
  color: #d6d6d6;
  margin: 24px 0 24px 0;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 1px;
}
.carousel-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-size: 2.65rem;
  padding-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.carousel-btn:hover {
  background-color: var(--primary-color-hover);
}
@media (min-width: 576px) {
  .feature-card { 
    max-width: 320px; 
  }
}
@media (min-width: 601px) and (max-width: 850px) {
  .feature-card {
    flex: 0 0 82vw;
    min-width: 82vw;
    margin: 30px 0 80px 0;
  }

  .feature-image {
    flex: 1.15;
  }

  .feature-text {
    flex: 1.45;
    padding: 42px 20px;
  }

  .feature-text h3 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .feature-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 14px 0 0 0;
  }
}
@media (max-width: 600px) {
  .feature-card {
    flex-direction: column;
    flex: 0 0 90vw;
    min-width: 90vw;
    margin: 10px auto;
  }

  .feature-image,
  .feature-text {
    width: 100%;
    flex: none;
  }

  .feature-image {
    max-height: 250px;
  }

  .feature-text {
    padding: 20px 18px;
    text-align: center;
  }

  .feature-text h3 {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .feature-text p {
    font-size: 17.5px;
    margin: 8px 0;
    line-height: 1.65;
  }

  .feature-card .feature-btn {
    margin: 20px auto;
  }

  .carousel-controls {
    margin-top: 1px;
  }
}
@media (min-width: 1600px) {
  .carousel-container {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .feature-card {
    flex: 0 0 86%;
    min-width: 86%;
  }
}
/* ==========================================================================
   My Clients section
========================================================================== */
.testimonials-section {
  background: var(--lighter-bg);
  padding: 80px 20px;
  color: var(--text);
  text-align: center;
}
.testimonials-container {
  max-width: 950px;
  margin: 0 auto;
}
.testimonials-header h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--text);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial-card {
  background: var(--card-color);
  padding: 45px 24px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.testimonial-card:hover {
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--hover-shadow-color);
}
.testimonial-stars {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 30px;
  margin-bottom: 35px;
}
.testimonial-footer {
  margin-top: auto;
}
.testimonial-name {
  font-weight: 600;
  color: var(--muted);
  font-size: 1rem;
}
.testimonial-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}
.testimonials-actions {
  margin-top: 45px;
}
.testimonials-cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}
.testimonials-cta:hover {
  background: var(--primary-color-hover);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    text-align: center;
  }
}

/* ==========================================================================
   Pricing Section
========================================================================== */
.pricing-section {
  background:
  linear-gradient(rgba(8, 10, 16, 0.08), rgba(8, 10, 16, 0.08)),
  url("images/SummitSitesGlitterBG.png") center center / cover no-repeat;
  padding: 6rem 2rem;
  border-top: 5px solid var(--primary-color-hover);
  border-bottom: 5px solid var(--primary-color-hover);
  text-align: center;
  position: relative;
}
.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.pricing-subtext {
  font-size: 1.05rem;
  color: var(--card);
  margin-bottom: 4rem;
  opacity: 0.85;
}
.pricing-card {
  background: var(--features-bg);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 30px 60px var(--shadow-color);
}
.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 3rem;
}
.pricing-feature i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.pricing-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--card);
  font-weight: 600;
}
.pricing-feature p {
  font-size: 0.95rem;
  color: var(--card);
  line-height: 1.6;
}
.pricing-divider {
  height: 1px;
  background: var(--primary-color);
  margin: 2.5rem 0;
}
.pricing-cta-text {
  font-size: 1.05rem;
  color: var(--card);
  width: 60%;
  margin: auto;
}
.pricing-cta-btn {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.25rem;
  padding: 14px 30px;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}
.pricing-cta-btn:hover {
  background: var(--primary-color-hover);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .pricing-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-card {
    padding: 3rem 2rem;
  }
  .pricing-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Confidence in Every Detail
========================================================================== */
.confidence-section {
  padding: 8rem 2rem 9rem 2rem;
  overflow: hidden;
  background: var(--lighter-bg);
}
.confidence-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.confidence-title {
  font-size: 1.95em;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 20px;
}
.confidence-description,
.confidence-additional {
  font-family: "Parkinsans", sans-serif;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text);
}
.confidence-description{
  font-size: 1.2em;
  color: var(--primary-color);
}
.confidence-additional {
  font-size: 1em;
}
.confidence-cta {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}
.confidence-cta:hover {
  color: var(--primary-color);
}
.arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.confidence-cta:hover .arrow-icon {
  transform: scaleX(1.6);
}
.confidence-image {
  width: 100%;
  max-width: 600px;
}
.confidence-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}
@media (min-width: 768px) {
  .confidence-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .confidence-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
  }
  .confidence-image {
    flex: 1;
  }
}
/* ==========================================================================
   FAQ FAQ FAQ FAQ FAQ FAQ FAQ FAQ 
========================================================================== */
.faq-section {
  background: linear-gradient(to bottom, var(--lighter-bg), var(--lighter-lighter-bg));
  padding: 60px 20px;
  color: var(--text);
}
.faq-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--primary-color);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.faq-question {
  all: unset;
  font-size: 1.15em;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.faq-question::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1em;
  line-height: 1.6;
  color: var(--muted);
  transition: all 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
  padding-top: 15px;
}
/* ==========================================================================
   Footer Sections
   ========================================================================== */
  .footer-section {
    background: var(--lighter-bg);
    padding: 50px 20px;
    color: var(--text);
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-branding .footer-logo {
    font-size: 2.4em;
    color: var(--primary-color);
    text-shadow: none;
    filter: none;
    mix-blend-mode: normal;
    position: relative;
    z-index: 1;
  }
  .footer-branding .footer-tagline {
    font-size: .9em;
    color: var(--text);
  }
.footer-branding, .footer-nav, .footer-contact {
  flex: 1;
  min-width: 220px;
  text-align: center;
}
  .footer-title {
    font-size: 1.4em;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  .footer-links {
    list-style: none;
    padding: 0;
  }
  .footer-links li {
    margin-bottom: 10px;
  } 
  .footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
  }
  .contact-info {
    list-style: none;
    padding: 0;
  }
  .contact-info li {
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .contact-info i {
    color: var(--primary-color);
  }
  .footer-bottom {
    width: 100%;
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--card);
    font-size: 0.9em;
    color: var(--text);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 8px;
  }
  .footer-bottom a:hover {
  text-decoration: underline;
  }
@media (min-width: 1200px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1400px) {
    .footer-container {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      gap: 60px;
      justify-content: space-between;
      padding-left: 20px;
      padding-right: 20px;
    }
  }
@media (max-width: 1000px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-branding, .footer-nav, .footer-contact {
      flex: 1;
      min-width: 0;
      max-width: none;
      text-align: center;
    }
  }
  @media (min-width: 2100px) {
    .footer-container { max-width: 1200px; gap: 80px; }
  }
