

/* =========================================
   PROCESS SECTION — FINAL REFINEMENT
========================================= */

.process-block {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 55px;
  align-items: start;

  margin-top: 100px;
  padding-top: 75px;

  border-top: 1px solid rgba(77, 221, 211, 0.14);
}


/* =========================================
   PROCESS INTRO
========================================= */

.process-intro {
  position: relative;
  z-index: 2;
}

.process-intro h2 {
  margin: 18px 0 20px;

  font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  line-height: 1.08;

  letter-spacing: -0.045em;

  max-width: 290px;
}

.process-intro p {
  max-width: 280px;

  margin: 0 0 30px;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.7;
}


/* =========================================
   START PROJECT BUTTON
========================================= */

.process-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  min-width: 225px;

  padding: 15px 24px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    #48e4d8,
    #20c9c4
  );

  color: #001012;

  font-weight: 700;
  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(32, 201, 196, 0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 35px rgba(32, 201, 196, 0.28);
}

.process-button span {
  font-size: 1.15rem;

  transition:
    transform 0.25s ease;
}

.process-button:hover span {
  transform: translateX(5px);
}


/* =========================================
   PROCESS STEPS
========================================= */

.process-steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 10px;

  padding-top: 5px;
}


/* Connecting line */

.process-steps::before {
  content: "";

  position: absolute;

  top: 43px;
  left: 42px;
  right: 42px;

  height: 1px;

  background: rgba(53, 215, 207, 0.35);

  z-index: 0;
}


/* =========================================
   INDIVIDUAL STEP
========================================= */

.process-step {
  position: relative;

  z-index: 1;

  text-align: center;

  padding: 0 6px;
}


/* =========================================
   STEP CIRCLE
========================================= */

.step-circle {
  position: relative;

  width: 86px;
  height: 86px;

  margin: 0 auto 18px;

  border: 1px solid rgba(72, 228, 216, 0.75);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at center,
      rgba(32, 201, 196, 0.10),
      rgba(0, 16, 18, 0.98) 70%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 22px rgba(32, 201, 196, 0.06);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Number */

.step-circle span {
  position: absolute;

  top: 8px;

  font-size: 0.9rem;
  font-weight: 800;

  color: #ffffff;
}


/* Font Awesome icon */

.step-circle i {
  margin-top: 17px;

  font-size: 1.05rem;

  color: #28ddd4;

  text-shadow:
    0 0 12px rgba(39, 220, 211, 0.45);

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


/* Hover */

.process-step:hover .step-circle {
  transform: translateY(-4px);

  border-color: #5ceee5;

  box-shadow:
    0 0 30px rgba(32, 201, 196, 0.18);
}

.process-step:hover .step-circle i {
  color: #6ffff6;

  transform: scale(1.08);
}


/* =========================================
   STEP TEXT
========================================= */

.process-step h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 0.98rem;
  font-weight: 700;
}

.process-step p {
  max-width: 170px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 0.83rem;

  line-height: 1.6;
}

/* =========================================
   FEATURED PORTFOLIO
========================================= */

.portfolio-section {
  position: relative;

  padding: 120px 6%;

  overflow: hidden;

  border-top:
    1px solid rgba(77, 221, 211, 0.10);
}


.portfolio-container {
  width: min(1180px, 100%);

  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.portfolio-heading {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 60px;

  margin-bottom: 55px;
}


.portfolio-heading h2 {
  max-width: 650px;

  margin: 18px 0 0;

  font-size:
    clamp(2.4rem, 4vw, 4rem);

  line-height: 1.03;

  letter-spacing: -0.045em;
}


.portfolio-heading h2 span {
  display: block;

  color: #35ddd4;
}


.portfolio-intro {
  max-width: 370px;

  padding-bottom: 5px;
}


.portfolio-intro p {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;

  line-height: 1.75;
}


/* =========================================
   PROJECTS
========================================= */

.portfolio-projects {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 26px;
}


/* =========================================
   PROJECT CARD
========================================= */

.portfolio-project {
  overflow: hidden;

  border:
    1px solid rgba(77, 221, 211, 0.14);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );

  backdrop-filter: blur(12px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


.portfolio-project:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(77, 221, 211, 0.38);

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.30),
    0 0 40px rgba(32, 201, 196, 0.06);
}


/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
  position: relative;

  height: 390px;

  overflow: hidden;

  background: #07191b;
}


.project-image img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  
  object-position: top center;

  transition:
    opacity 0.5s ease,
    transform 0.7s ease;
}


/* Main screenshot */

.project-image > img:first-child {
  opacity: 1;
}


/* Second screenshot */

.project-image-hover {
  opacity: 0;
}


/* Hover → reveal second screenshot */

.portfolio-project:hover
.project-image-hover {
  opacity: 1;
}


/* Slight zoom */

.portfolio-project:hover
.project-image img {
  transform: scale(1.035);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.project-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05),
      transparent 45%,
      rgba(0, 0, 0, 0.65)
    );

  pointer-events: none;
}


/* =========================================
   HOVER LABEL
========================================= */

.project-overlay {
  position: absolute;

  left: 50%;
  bottom: 28px;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 16px;

  border:
    1px solid rgba(255, 255, 255, 0.22);

  border-radius: 50px;

  background:
    rgba(0, 15, 17, 0.72);

  backdrop-filter: blur(10px);

  color: #ffffff;

  font-size: 0.75rem;

  font-weight: 700;

  white-space: nowrap;

  opacity: 0;

  transform:
    translate(-50%, 10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.portfolio-project:hover
.project-overlay {
  opacity: 1;

  transform:
    translate(-50%, 0);
}


.project-overlay i {
  color: #35ddd4;

  font-size: 0.7rem;
}


/* =========================================
   PROJECT NUMBER
========================================= */

.project-number {
  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 5;

  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, 0.20);

  border-radius: 50%;

  background:
    rgba(0, 15, 17, 0.65);

  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 0.72rem;

  font-weight: 800;
}


/* =========================================
   PROJECT CONTENT
========================================= */

.project-content {
  padding: 27px 28px 30px;
}


/* =========================================
   CATEGORIES
========================================= */

.project-category {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 16px;
}


.project-category span {
  padding: 6px 10px;

  border:
    1px solid rgba(77, 221, 211, 0.15);

  border-radius: 50px;

  background:
    rgba(32, 201, 196, 0.035);

  color: #42ddd5;

  font-size: 0.62rem;

  font-weight: 700;
}


/* =========================================
   TITLE
========================================= */

.project-title-row {
  display: flex;

  align-items: start;

  justify-content: space-between;

  gap: 20px;
}


.project-title-row h3 {
  margin: 0 0 9px;

  color: #ffffff;

  font-size: 1.45rem;

  letter-spacing: -0.025em;
}


.project-title-row p {
  max-width: 470px;

  margin: 0;

  color: var(--muted);

  font-size: 0.85rem;

  line-height: 1.7;
}


/* =========================================
   PROJECT ARROW
========================================= */

.project-arrow {
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(77, 221, 211, 0.20);

  border-radius: 50%;

  background:
    rgba(32, 201, 196, 0.05);

  color: #35ddd4;

  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.project-arrow:hover {
  background:
    rgba(32, 201, 196, 0.16);

  transform:
    translate(2px, -2px);
}


.project-arrow i {
  font-size: 0.75rem;
}


/* =========================================
   PORTFOLIO CTA
========================================= */

.portfolio-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 28px;

  padding: 27px 30px;

  border:
    1px solid rgba(77, 221, 211, 0.12);

  border-radius: 18px;

  background:
    rgba(32, 201, 196, 0.035);
}


.portfolio-cta div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.portfolio-cta span {
  color: var(--muted);

  font-size: 0.74rem;
}


.portfolio-cta strong {
  color: #ffffff;

  font-size: 1.05rem;
}


.portfolio-button {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  padding: 13px 20px;

  border:
    1px solid rgba(77, 221, 211, 0.28);

  border-radius: 50px;

  background:
    rgba(77, 221, 211, 0.09);

  color: #42ded5;

  font-size: 0.78rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.portfolio-button:hover {
  background:
    rgba(77, 221, 211, 0.18);

  transform:
    translateY(-2px);
}


.portfolio-button i {
  font-size: 0.72rem;
}

/* =========================================
   ABOUT WEBGROW STUDIO
========================================= */

.about-section {
  position: relative;

  padding: 120px 6%;

  overflow: hidden;

  border-top:
    1px solid rgba(77, 221, 211, 0.10);
}


.about-container {
  width: min(1180px, 100%);

  margin: 0 auto;
}


/* =========================================
   LABEL
========================================= */

.about-label {
  margin-bottom: 35px;
}


/* =========================================
   MAIN ABOUT CONTENT
========================================= */

.about-main {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.85fr);

  gap: 100px;

  align-items: start;

  margin-bottom: 80px;
}


.about-heading h2 {
  margin: 0;

  font-size:
    clamp(3rem, 6vw, 5.5rem);

  line-height: 0.95;

  letter-spacing: -0.06em;
}


.about-heading h2 span {
  display: block;

  color: #35ddd4;
}


/* =========================================
   ABOUT COPY
========================================= */

.about-copy {
  padding-top: 5px;
}


.about-copy p {
  margin: 0 0 20px;

  color: var(--muted);

  font-size: 0.92rem;

  line-height: 1.8;
}


.about-copy .about-lead {
  margin-bottom: 24px;

  color: #ffffff;

  font-size: 1.15rem;

  line-height: 1.65;
}


/* =========================================
   ABOUT LINK
========================================= */

.about-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 8px;

  padding: 13px 0;

  color: #35ddd4;

  font-size: 0.82rem;

  font-weight: 700;

  text-decoration: none;
}


.about-link i {
  font-size: 0.7rem;

  transition:
    transform 0.25s ease;
}


.about-link:hover i {
  transform:
    translateX(5px);
}


/* =========================================
   PRINCIPLES
========================================= */

.about-principles {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


.about-principle {
  position: relative;

  min-height: 260px;

  padding: 28px;

  overflow: hidden;

  border:
    1px solid rgba(77, 221, 211, 0.13);

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.012)
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}


.about-principle:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(77, 221, 211, 0.32);

  background:
    linear-gradient(
      145deg,
      rgba(77,221,211,0.065),
      rgba(255,255,255,0.015)
    );
}


/* =========================================
   PRINCIPLE NUMBER
========================================= */

.principle-number {
  position: absolute;

  top: 24px;
  right: 26px;

  color:
    rgba(255,255,255,0.18);

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.12em;
}


/* =========================================
   PRINCIPLE ICON
========================================= */

.principle-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 50px;

  border:
    1px solid rgba(77, 221, 211, 0.20);

  border-radius: 14px;

  background:
    rgba(32, 201, 196, 0.07);

  color: #35ddd4;

  font-size: 1rem;
}


.principle-content h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 1.05rem;

  letter-spacing: -0.02em;
}


.principle-content p {
  margin: 0;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.7;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.about-statement {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 25px;

  margin-top: 70px;
}


.statement-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(77, 221, 211, 0.20)
    );
}


.statement-line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(77, 221, 211, 0.20),
      transparent
    );
}


.about-statement p {
  margin: 0;

  color:
    rgba(255,255,255,0.45);

  font-size: 0.75rem;

  text-align: center;

  white-space: nowrap;
}


.about-statement strong {
  color: #35ddd4;
}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
  position: relative;

  padding: 120px 6%;

  overflow: hidden;

  border-top:
    1px solid rgba(77, 221, 211, 0.10);
}


.pricing-container {
  width: min(1200px, 100%);

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.pricing-header {
  max-width: 680px;

  margin: 0 auto 55px;

  text-align: center;
}


.pricing-header h2 {
  margin: 25px 0 20px;

  font-size:
    clamp(3rem, 6vw, 5rem);

  line-height: 0.95;

  letter-spacing: -0.06em;
}


.pricing-header h2 span {
  display: block;

  color: #35ddd4;
}


.pricing-header p {
  max-width: 560px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 0.95rem;

  line-height: 1.7;
}


/* =========================================
   MAIN TOGGLE
========================================= */

.pricing-toggle {
  display: flex;

  justify-content: center;

  width: fit-content;

  margin: 0 auto 35px;

  padding: 5px;

  border:
    1px solid rgba(77, 221, 211, 0.15);

  border-radius: 999px;

  background:
    rgba(255,255,255,0.025);
}


.pricing-toggle-btn {
  display: flex;

  align-items: center;

  gap: 9px;

  border: 0;

  border-radius: 999px;

  padding: 13px 25px;

  background: transparent;

  color:
    rgba(255,255,255,0.48);

  font-family: inherit;

  font-size: 0.78rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    0.25s ease;
}


.pricing-toggle-btn:hover {
  color: #ffffff;
}


.pricing-toggle-btn.active {
  background: #35ddd4;

  color: #031516;

  box-shadow:
    0 8px 25px rgba(53,221,212,0.12);
}


/* =========================================
   PRICING VIEWS
========================================= */

.pricing-view {
  display: none;
}


.pricing-view.active {
  display: block;
}


/* =========================================
   SUB TOGGLE
========================================= */

.pricing-subtoggle {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-bottom: 35px;
}


.pricing-subtoggle-btn {
  padding: 10px 20px;

  border:
    1px solid rgba(77, 221, 211, 0.12);

  border-radius: 999px;

  background: transparent;

  color:
    rgba(255,255,255,0.45);

  font-family: inherit;

  font-size: 0.72rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    0.25s ease;
}


.pricing-subtoggle-btn:hover {
  border-color:
    rgba(77,221,211,0.35);

  color: #ffffff;
}


.pricing-subtoggle-btn.active {
  border-color: #35ddd4;

  background:
    rgba(53,221,212,0.09);

  color: #35ddd4;
}


/* =========================================
   PLANS
========================================= */

.pricing-plans {
  display: none;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


.pricing-plans.active {
  display: grid;
}


/* =========================================
   PRICING CARD
========================================= */

.pricing-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 535px;

  padding: 35px 30px 28px;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.09);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.012)
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.pricing-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(53,221,212,0.35);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.18);
}


/* =========================================
   FEATURED
========================================= */

.pricing-card.featured {
  border-color:
    rgba(53,221,212,0.55);

  background:
    linear-gradient(
      145deg,
      rgba(53,221,212,0.075),
      rgba(255,255,255,0.018)
    );
}


.popular-badge {
  position: absolute;

  top: 0;
  left: 50%;

  transform:
    translate(-50%, -1px);

  padding: 7px 17px;

  border-radius:
    0 0 10px 10px;

  background: #35ddd4;

  color: #031516;

  font-size: 0.57rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  white-space: nowrap;
}


/* =========================================
   PLAN HEADER
========================================= */

.pricing-card-top {
  text-align: center;

  margin-bottom: 28px;
}


.pricing-plan-name {
  display: block;

  margin-bottom: 13px;

  color: #ffffff;

  font-size: 1.05rem;

  font-weight: 700;
}


.pricing-price {
  color: #35ddd4;

  font-size: 2.45rem;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;
}


.pricing-frequency {
  display: block;

  margin-top: 8px;

  color:
    rgba(255,255,255,0.38);

  font-size: 0.68rem;
}


/* =========================================
   FEATURES
========================================= */

.pricing-features {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.pricing-features li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color:
    rgba(255,255,255,0.62);

  font-size: 0.73rem;

  line-height: 1.45;
}


.pricing-features li i {
  flex-shrink: 0;

  margin-top: 3px;

  color: #35ddd4;

  font-size: 0.63rem;
}


/* =========================================
   BUTTON
========================================= */

.pricing-button {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: auto;

  padding: 13px 18px;

  border:
    1px solid rgba(53,221,212,0.25);

  border-radius: 10px;

  background:
    rgba(53,221,212,0.06);

  color: #35ddd4;

  font-size: 0.72rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    0.25s ease;
}


.pricing-button:hover {
  background: #35ddd4;

  color: #031516;

  transform:
    translateY(-2px);
}


.pricing-button i {
  font-size: 0.6rem;
}


/* =========================================
   MAINTENANCE NOTE
========================================= */

.maintenance-note {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 25px;

  padding: 20px 24px;

  border:
    1px solid rgba(77,221,211,0.12);

  border-radius: 16px;

  background:
    rgba(255,255,255,0.025);
}


.maintenance-note > i {
  color: #35ddd4;

  font-size: 1.3rem;
}


.maintenance-note div {
  display: flex;

  flex-direction: column;

  gap: 4px;

  flex: 1;
}


.maintenance-note strong {
  color: #ffffff;

  font-size: 0.78rem;
}


.maintenance-note span {
  color:
    rgba(255,255,255,0.43);

  font-size: 0.68rem;
}


.maintenance-note a {
  color: #35ddd4;

  font-size: 0.68rem;

  font-weight: 700;

  text-decoration: none;
}


/* =========================================
   HOSTING ICON
========================================= */

.hosting-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 45px;
  height: 45px;

  margin: 0 auto 25px;

  border:
    1px solid rgba(53,221,212,0.18);

  border-radius: 13px;

  background:
    rgba(53,221,212,0.06);

  color: #35ddd4;

  font-size: 0.9rem;
}


/* =========================================
   HOSTING PLACEHOLDER
========================================= */

.hosting-placeholder {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 300px;

  padding: 30px;

  border:
    1px dashed rgba(255,255,255,0.12);

  border-radius: 22px;

  text-align: center;
}


.hosting-placeholder > i {
  margin-bottom: 18px;

  color: #35ddd4;

  font-size: 1.4rem;
}


.hosting-placeholder h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 1rem;
}


.hosting-placeholder p {
  max-width: 230px;

  margin: 0 0 20px;

  color:
    rgba(255,255,255,0.45);

  font-size: 0.72rem;

  line-height: 1.6;
}


.hosting-placeholder a {
  color: #35ddd4;

  font-size: 0.7rem;

  font-weight: 700;

  text-decoration: none;
}

/* =========================================
   QUOTE SECTION
========================================= */

.quote-section {
    position: relative;
    padding: 120px 34px;
    background: #00191b;
    overflow: hidden;
}


/* Background glow */

.quote-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(32, 225, 215, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    top: 10%;
    left: -180px;
    pointer-events: none;
}

.quote-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(32, 225, 215, 0.06);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -200px;
    right: -150px;
    pointer-events: none;
}


/* Main container */

.quote-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;

    align-items: center;
}


/* =========================================
   LEFT SIDE
========================================= */

.quote-intro {
    max-width: 470px;
}

.quote-intro .section-label {
    display: inline-flex;
    align-items: center;

    padding: 10px 20px;

    border: 1px solid rgba(39, 220, 210, 0.6);
    border-radius: 50px;

    color: #35e0d7;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.quote-intro h2 {
    margin: 25px 0 20px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;

    color: #ffffff;
    letter-spacing: -2px;
}


.quote-intro h2 span {
    display: block;
    color: #32ded5;
}


.quote-intro > p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 40px;
}


/* =========================================
   BENEFITS
========================================= */

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.quote-benefit {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}


.quote-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(39, 220, 210, 0.09);
    border: 1px solid rgba(39, 220, 210, 0.25);

    color: #32ded5;

    font-size: 18px;

    transition: all 0.3s ease;
}


.quote-benefit:hover .quote-icon {
    background: #32ded5;
    color: #00191b;

    transform: translateY(-3px);
}


.quote-benefit h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 16px;
}


.quote-benefit p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   QUOTE CARD
========================================= */

.quote-card {
    padding: 35px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(53, 224, 215, 0.25);

    border-radius: 28px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


/* Header */

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}


.quote-card-header span {
    color: #32ded5;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.quote-card-header h3 {
    margin: 7px 0 0;

    color: #ffffff;

    font-size: 28px;
}


.quote-header-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(50, 222, 213, 0.1);

    border: 1px solid rgba(50, 222, 213, 0.35);

    color: #32ded5;

    font-size: 18px;
}


/* =========================================
   FORM
========================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    font-weight: 600;
}


.input-wrapper,
.textarea-wrapper {
    position: relative;
}


.input-wrapper > i,
.textarea-wrapper > i {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #32ded5;

    font-size: 14px;

    pointer-events: none;
}


.textarea-wrapper > i {
    top: 20px;
    transform: none;
}


.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px 14px 45px;

    background: rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}


.input-wrapper select option {
    background: #002326;
    color: #ffffff;
}


.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}


.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {

    border-color: #32ded5;

    background: rgba(50, 222, 213, 0.045);

    box-shadow:
        0 0 0 3px rgba(50, 222, 213, 0.08);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.quote-submit {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 16px 22px;

    margin-top: 8px;

    border: none;
    border-radius: 13px;

    background: #32ded5;

    color: #00191b;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.quote-submit span {

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.12);

    transition: transform 0.25s ease;
}


.quote-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(50, 222, 213, 0.22);
}


.quote-submit:hover span {
    transform: translateX(4px);
}


/* =========================================
   PRIVACY NOTE
========================================= */

.quote-note {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin: 15px 0 0;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
    text-align: center;
}


.quote-note i {
    color: #32ded5;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;

    padding: 110px 34px;

    background: #00191b;

    overflow: hidden;
}


/* Background glow */

.contact-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    background: rgba(50, 222, 213, 0.07);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -200px;
    left: -150px;

    background: rgba(50, 222, 213, 0.06);

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.contact-container {
    position: relative;

    z-index: 2;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.contact-heading {
    max-width: 650px;

    margin-bottom: 55px;
}


.contact-heading .section-label {
    display: inline-flex;

    padding: 10px 20px;

    border: 1px solid rgba(50, 222, 213, 0.55);

    border-radius: 50px;

    color: #32ded5;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-heading h2 {
    margin: 25px 0 18px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.contact-heading h2 span {
    color: #32ded5;
}


.contact-heading p {
    max-width: 580px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.contact-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 82px;

    padding: 16px 20px;

    box-sizing: border-box;

    text-decoration: none;

    color: inherit;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 17px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.contact-item:hover {
    transform: translateX(5px);

    background: rgba(50, 222, 213, 0.055);

    border-color: rgba(50, 222, 213, 0.35);
}


/* Icon */

.contact-item-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(50, 222, 213, 0.08);

    border: 1px solid rgba(50, 222, 213, 0.2);

    color: #32ded5;

    font-size: 17px;

    transition: all 0.3s ease;
}


.contact-item:hover .contact-item-icon {
    background: #32ded5;

    color: #00191b;

    transform: scale(1.05);
}


/* Text */

.contact-item div:nth-child(2) {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.contact-item div:nth-child(2) span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.contact-item div:nth-child(2) strong {
    color: #ffffff;

    font-size: 15px;

    font-weight: 600;
}


/* Arrow */

.contact-arrow {
    margin-left: auto;

    color: rgba(255, 255, 255, 0.25);

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-item:hover .contact-arrow {
    color: #32ded5;

    transform: translate(3px, -3px);
}


/* =========================================
   CONNECT CARD
========================================= */

.connect-card {
    position: relative;

    padding: 35px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(50, 222, 213, 0.10),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(50, 222, 213, 0.22);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;
}


/* Decorative circle */

.connect-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    border: 1px solid rgba(50, 222, 213, 0.13);
}


.connect-card-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    background: rgba(50, 222, 213, 0.1);

    color: #32ded5;

    font-size: 18px;
}


.connect-label {
    color: #32ded5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.connect-card h3 {
    margin: 12px 0 15px;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.15;
}


.connect-card h3 span {
    color: #32ded5;
}


.connect-card > p {
    max-width: 430px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    display: flex;

    gap: 10px;

    margin-bottom: 30px;
}


.social-links a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 15px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.social-links a:hover {
    transform: translateY(-4px);

    background: #32ded5;

    border-color: #32ded5;

    color: #00191b;
}


/* =========================================
   CTA
========================================= */

.contact-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    border-radius: 12px;

    background: #32ded5;

    color: #00191b;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-cta span {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.12);

    transition: transform 0.25s ease;
}


.contact-cta:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(50, 222, 213, 0.2);
}


.contact-cta:hover span {
    transform: translateX(4px);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #00191b 0%,
            #000f11 100%
        );

    border-top: 1px solid rgba(50, 222, 213, 0.12);

    overflow: hidden;
}


/* subtle glow */

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 250px;

    left: 50%;

    top: -200px;

    transform: translateX(-50%);

    background: rgba(50, 222, 213, 0.07);

    filter: blur(90px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    position: relative;

    z-index: 2;

    width: min(94%, 1200px);

    margin: 0 auto;

    padding: 70px 0 25px;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1.2fr
        1.2fr;

    gap: 55px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 330px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    text-decoration: none;

    font-size: 19px;

    font-weight: 800;
}


.footer-logo img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}


.footer-brand > p {
    margin: 20px 0 25px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    border-radius: 10px;

    background: #32ded5;

    color: #00191b;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-cta i {
    transition: transform 0.25s ease;
}


.footer-cta:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(50, 222, 213, 0.18);
}


.footer-cta:hover i {
    transform: translateX(4px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;
}


.footer-column > a {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column > a:hover {
    color: #32ded5;

    transform: translateX(3px);
}


/* =========================================
   CONTACT COLUMN
========================================= */

.footer-contact > a {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-contact > a i {
    width: 18px;

    color: #32ded5;

    text-align: center;
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.footer-socials {
    display: flex;

    gap: 8px;

    margin-top: 13px;
}


.footer-socials a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: rgba(255, 255, 255, 0.65);

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    font-size: 12px;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.footer-socials a:hover {
    transform: translateY(-3px);

    color: #00191b;

    background: #32ded5;

    border-color: #32ded5;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    height: 1px;

    margin: 55px 0 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(50, 222, 213, 0.18),
            transparent
        );
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
}


.footer-legal {
    display: flex;

    gap: 22px;
}


.footer-legal a {
    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-legal a:hover {
    color: #32ded5;
}

/* ========================================
   FORM
   =========================================*/
   .quote-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(7, 17, 31, 0.78);
    backdrop-filter: blur(7px);

    animation: quoteModalFadeIn 0.25s ease;
}


/* =========================
   MODAL
========================= */

.quote-modal {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 36px;

    background: var(--navy);
    color: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius);

    text-align: center;

    box-shadow:
        0 25px 70px rgba(7, 17, 31, 0.35);

    animation: quoteModalSlideUp 0.3s ease;
}


/* =========================
   CLOSE BUTTON
========================= */

.quote-modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: var(--muted);

    font-size: 23px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

.quote-modal-close:hover {
    background: rgba(39, 215, 196, 0.12);

    border-color: var(--line);

    color: var(--teal);
}


/* =========================
   ICON
========================= */

.quote-modal-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(39, 215, 196, 0.10);

    border: 1px solid var(--line);

    color: var(--teal);

    font-size: 28px;

    box-shadow:
        0 0 30px rgba(39, 215, 196, 0.08);
}


/* =========================
   HEADING
========================= */

.quote-modal h2 {
    margin: 0 0 15px;

    color: var(--white);

    font-size: 25px;
    font-weight: 700;

    line-height: 1.25;
}


/* =========================
   DESCRIPTION
========================= */

.quote-modal p {
    margin: 0 0 12px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.65;
}

.quote-modal p strong {
    color: var(--white);
}


/* =========================
   CONTACT BUTTONS
========================= */

.quote-contact-details {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 26px;
}


.quote-contact-btn {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border-radius: 14px;

    text-decoration: none;

    text-align: left;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


/* =========================
   WHATSAPP
========================= */

.quote-contact-btn.whatsapp {
    background: rgba(39, 215, 196, 0.08);

    border: 1px solid var(--line);

    color: var(--white);
}

.quote-contact-btn.whatsapp:hover {
    transform: translateY(-2px);

    background: rgba(39, 215, 196, 0.14);

    border-color: var(--teal);
}


/* =========================
   EMAIL
========================= */

.quote-contact-btn.email {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--white);
}

.quote-contact-btn.email:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(39, 215, 196, 0.45);
}


/* =========================
   CONTACT ICONS
========================= */

.quote-contact-btn i {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;
}


/* WhatsApp icon */

.quote-contact-btn.whatsapp i {
    background: var(--teal);

    color: var(--navy);
}


/* Email icon */

.quote-contact-btn.email i {
    background: var(--navy2);

    border: 1px solid var(--line);

    color: var(--teal);
}


/* =========================
   CONTACT TEXT
========================= */

.quote-contact-btn span {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.quote-contact-btn strong {
    color: var(--white);

    font-size: 15px;
    font-weight: 600;
}

.quote-contact-btn small {
    color: var(--muted);

    font-size: 13px;
}


/* =========================
   DISMISS BUTTON
========================= */

.quote-modal-dismiss {
    margin-top: 20px;

    padding: 8px 12px;

    border: none;

    background: transparent;

    color: var(--muted);

    font-size: 14px;

    cursor: pointer;

    transition: color 0.2s ease;
}

.quote-modal-dismiss:hover {
    color: var(--teal);
}


/* =========================
   ANIMATIONS
========================= */

@keyframes quoteModalFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes quoteModalSlideUp {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .quote-modal-overlay {
        padding: 16px;
    }

    .quote-modal {
        padding: 32px 22px 25px;
    }

    .quote-modal h2 {
        font-size: 22px;
    }

    .quote-modal p {
        font-size: 14px;
    }

    .quote-contact-btn {
        padding: 14px;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }

}


@media (max-width: 620px) {

    .footer-container {
        padding: 55px 0 22px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 12px 18px;
    }

}


@media (max-width: 420px) {

    .footer-main {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 620px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-heading h2 {
        font-size: 42px;
    }

    .connect-card {
        padding: 28px 22px;
    }

    .connect-card h3 {
        font-size: 28px;
    }

    .contact-item {
        padding: 14px;
    }

    .contact-item-icon {
        width: 43px;
        height: 43px;
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .quote-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quote-intro {
        max-width: 700px;
    }

}


@media (max-width: 620px) {

    .quote-section {
        padding: 80px 20px;
    }

    .quote-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-intro h2 {
        font-size: 42px;
    }

    .quote-card-header h3 {
        font-size: 24px;
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .pricing-section {
    padding: 90px 5%;
  }


  .pricing-plans {
    grid-template-columns: 1fr;
  }


  .pricing-card {
    min-height: auto;
  }


  .pricing-features {
    margin-bottom: 30px;
  }

}


@media (max-width: 600px) {

  .pricing-section {
    padding: 75px 18px;
  }


  .pricing-toggle {
    width: 100%;
  }


  .pricing-toggle-btn {
    flex: 1;

    justify-content: center;

    padding: 12px 10px;

    font-size: 0.7rem;
  }


  .pricing-subtoggle {
    flex-wrap: wrap;
  }


  .pricing-subtoggle-btn {
    flex: 1;

    min-width: 100px;
  }


  .pricing-card {
    padding: 30px 24px 24px;
  }


  .pricing-price {
    font-size: 2.2rem;
  }


  .maintenance-note {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .about-section {
    padding: 90px 5%;
  }


  .about-main {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-bottom: 60px;
  }


  .about-heading h2 {
    font-size: 4rem;
  }


  .about-principles {
    grid-template-columns: 1fr;
  }


  .about-principle {
    min-height: auto;
  }


  .principle-icon {
    margin-bottom: 35px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .about-section {
    padding: 75px 18px;
  }


  .about-heading h2 {
    font-size: 3rem;
  }


  .about-copy .about-lead {
    font-size: 1rem;
  }


  .about-principle {
    padding: 24px;

    min-height: 230px;
  }


  .about-statement {
    display: block;

    margin-top: 50px;
  }


  .statement-line {
    display: none;
  }


  .about-statement p {
    white-space: normal;

    line-height: 1.7;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .portfolio-section {
    padding: 90px 5%;
  }


  .portfolio-heading {
    align-items: start;

    flex-direction: column;

    gap: 20px;
  }


  .portfolio-intro {
    max-width: 600px;
  }


  .portfolio-projects {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .portfolio-section {
    padding: 75px 18px;
  }


  .portfolio-heading h2 {
    font-size: 2.5rem;
  }


  .project-image {
    height: 290px;
  }


  .project-content {
    padding: 24px;
  }


  .project-title-row {
    gap: 12px;
  }


  .project-title-row h3 {
    font-size: 1.3rem;
  }


  .project-arrow {
    width: 40px;
    height: 40px;
  }


  .portfolio-cta {
    align-items: flex-start;

    flex-direction: column;

    padding: 24px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .process-block {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .process-intro {
    max-width: 650px;
  }

  .process-intro h2 {
    max-width: 600px;
  }

  .process-intro p {
    max-width: 550px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);

    row-gap: 55px;
  }

  .process-steps::before {
    display: none;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .process-block {
    margin-top: 70px;

    padding-top: 60px;
  }

  .process-intro h2 {
    font-size: 2.35rem;

    max-width: 350px;
  }

  .process-steps {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .process-step p {
    max-width: 280px;
  }

  .step-circle {
    width: 82px;
    height: 82px;
  }

}

@media (max-width: 620px) {

  .coming-section {
    min-height: 360px;
    padding: 80px 18px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

}