/* =========================================================  
   PCP INNOVATION — MAIN STYLESHEET  
   ========================================================= */

/* -------------------------
   Base / Reset  
------------------------- */

:root {
  --orange: #d95729;
  --orange-dark: #b9441c;
  --purple: #5b44f1;
  --purple-dark: #4431c9;
  --green: #00d95f;
  --green-dark: #00ad4c;

  --ink: #172033;
  --ink-light: #536076;
  --muted: #748097;

  --white: #ffffff;
  --soft-white: #fcfcfe;
  --background: #f7f8fc;
  --background-alt: #f0f2f9;
  --border: #e4e8f1;
  --border-dark: #d8ddea;

  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.06);
  --shadow-md: 0 18px 48px rgba(23, 32, 51, 0.10);
  --shadow-lg: 0 28px 80px rgba(23, 32, 51, 0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --container: 1180px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  color: var(--white);
  background: var(--purple);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.page-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.10;
  z-index: -1;
}

.glow-purple {
  top: 120px;
  right: -260px;
  background: var(--purple);
}

.glow-orange {
  top: 52%;
  left: -340px;
  background: var(--orange);
}

/* -------------------------
   General typography  
------------------------- */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.14;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--ink-light);
}

.text-gradient {
  background: linear-gradient(95deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 217, 95, 0.12);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.80);
}

.eyebrow-light .eyebrow-dot {
  background: var(--green);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 58px;
}

.section-heading p {
  max-width: 630px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-heading p {
  margin-right: auto;
  margin-left: auto;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  max-width: none;
}

.split-heading > div {
  max-width: 630px;
}

.split-heading > p {
  max-width: 395px;
}

/* -------------------------
   Buttons and links  
------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 13px 21px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.button span {
  font-size: 1.15rem;
  line-height: 0;
  transition: transform var(--transition);
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(217, 87, 41, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(217, 87, 41, 0.32);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-dark);
}

.button-secondary:hover {
  color: var(--purple);
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  transition: gap var(--transition), color var(--transition);
}

.text-link span {
  font-size: 1.1rem;
}

.text-link:hover {
  color: var(--orange);
  gap: 12px;
}

/* -------------------------
   Header  
------------------------- */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(252, 252, 254, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding var(--transition), border-color var(--transition);
  z-index: 100;
}

.site-header.scrolled {
  padding: 12px 0;
  border-color: rgba(228, 232, 241, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  border-radius: 10px;
  box-shadow: 0 7px 17px rgba(91, 68, 241, 0.20);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.brand-name strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-name span {
  color: var(--ink-light);
  font-size: 0.72rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 34px;
}

.main-nav a {
  position: relative;
  color: var(--ink-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color var(--transition);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--orange);
  border-radius: 10px;
  content: "";
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.77rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

/* -------------------------
   Hero  
------------------------- */

.hero {
  min-height: 750px;
  padding-top: 95px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-description {
  max-width: 580px;
  margin-bottom: 34px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 46px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-trust p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.45;
}

.trust-avatars {
  display: flex;
  padding-left: 5px;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -5px;
  place-items: center;
  color: var(--white);
  border: 2px solid var(--soft-white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
}

.avatar-orange {
  background: var(--orange);
}

.avatar-purple {
  background: var(--purple);
}

.avatar-green {
  background: var(--green-dark);
}

/* Hero browser visual */

.hero-visual {
  position: relative;
  min-height: 465px;
}

.browser-window {
  position: absolute;
  top: 23px;
  right: 0;
  width: min(100%, 530px);
  height: 395px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(220, 224, 237, 0.9);
  border-radius: 19px;
  box-shadow: 0 35px 75px rgba(42, 48, 80, 0.16);
  transform: rotate(1deg);
}

.browser-topbar {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  background: #fbfbfd;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dde7;
}

.browser-dots span:first-child {
  background: var(--orange);
}

.browser-dots span:nth-child(2) {
  background: #fac44c;
}

.browser-dots span:nth-child(3) {
  background: var(--green);
}

.browser-address {
  width: 175px;
  margin: 0 auto;
  padding: 5px 10px;
  color: #98a0b2;
  background: #f0f2f7;
  border-radius: 5px;
  font-size: 0.58rem;
  text-align: center;
}

.browser-content {
  position: relative;
  height: calc(100% - 44px);
  padding: 26px 31px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(91, 68, 241, 0.12), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f8f8ff 100%);
}

.preview-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-logo {
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
}

.preview-links {
  display: flex;
  gap: 9px;
}

.preview-links span {
  display: block;
  width: 24px;
  height: 4px;
  background: #e5e8f1;
  border-radius: 5px;
}

.preview-hero {
  position: relative;
  z-index: 2;
  width: 70%;
  margin-top: 60px;
}

.preview-tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 4px 7px;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.10);
  border-radius: 4px;
  font-size: 0.46rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-title span {
  display: block;
  width: 92%;
  height: 14px;
  margin-bottom: 8px;
  background: var(--ink);
  border-radius: 4px;
}

.preview-title span:nth-child(2) {
  width: 76%;
}

.preview-title span:nth-child(3) {
  width: 48%;
  background: var(--orange);
}

.preview-copy {
  margin-top: 16px;
}

.preview-copy span {
  display: block;
  width: 86%;
  height: 5px;
  margin-bottom: 6px;
  background: #dce1ed;
  border-radius: 4px;
}

.preview-copy span:nth-child(2) {
  width: 64%;
}

.preview-button {
  width: 76px;
  height: 22px;
  margin-top: 18px;
  background: var(--orange);
  border-radius: 5px;
}

.preview-stat-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border: 1px solid rgba(230, 233, 241, 0.9);
  box-shadow: 0 13px 30px rgba(37, 42, 69, 0.13);
}

.stat-card-one {
  top: 78px;
  right: 27px;
  width: 140px;
  padding: 13px;
  border-radius: 10px;
}

.stat-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.48rem;
}

.stat-card-one strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  margin-top: 10px;
}

.mini-chart i {
  display: block;
  width: 9px;
  background: var(--purple);
  border-radius: 3px 3px 1px 1px;
}

.mini-chart i:nth-child(1) { height: 28%; opacity: 0.4; }
.mini-chart i:nth-child(2) { height: 44%; opacity: 0.5; }
.mini-chart i:nth-child(3) { height: 36%; opacity: 0.6; }
.mini-chart i:nth-child(4) { height: 65%; opacity: 0.7; }
.mini-chart i:nth-child(5) { height: 53%; opacity: 0.75; }
.mini-chart i:nth-child(6) { height: 79%; opacity: 0.85; }
.mini-chart i:nth-child(7) { height: 100%; background: var(--green); }

.preview-float-card {
  position: absolute;
  right: 49px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(37, 42, 69, 0.10);
  font-size: 0.52rem;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 217, 95, 0.13);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(91, 68, 241, 0.14);
  border-radius: 50%;
}

.orbit-one {
  top: -30px;
  right: -70px;
  width: 390px;
  height: 390px;
}

.orbit-two {
  right: 85px;
  bottom: -53px;
  width: 250px;
  height: 250px;
  border-color: rgba(217, 87, 41, 0.15);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
}

.chip-code {
  top: 58px;
  left: 7px;
  color: var(--purple);
}

.chip-mobile {
  right: 8px;
  bottom: 25px;
  color: var(--green-dark);
}

/* -------------------------
   Value section  
------------------------- */

.value-section {
  padding-top: 100px;
  background: var(--background);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 31px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.value-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 800;
}

.icon-orange {
  color: var(--orange);
  background: rgba(217, 87, 41, 0.11);
}

.icon-purple {
  color: var(--purple);
  background: rgba(91, 68, 241, 0.11);
}

.icon-green {
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.12);
}

/* -------------------------
   Services section  
------------------------- */

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 31px 30px;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(var(--orange), var(--purple));
  content: "";
  transition: height var(--transition);
}

.service-card:hover {
  z-index: 1;
  background: #fcfcff;
  box-shadow: var(--shadow-sm);
  transform: scale(1.015);
}

.service-card:hover::before {
  height: 100%;
}

.service-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #c7cddc;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.10);
  border-radius: 11px;
  font-size: 1.18rem;
  font-weight: 700;
}

.service-card:nth-child(3n + 1) .service-icon {
  color: var(--orange);
  background: rgba(217, 87, 41, 0.11);
}

.service-card:nth-child(3n) .service-icon {
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.12);
}

.service-card h3 {
  max-width: 220px;
}

.service-card p {
  min-height: 74px;
  margin-bottom: 23px;
  font-size: 0.9rem;
}

/* -------------------------
   Portfolio  
------------------------- */

.work-section {
  background: var(--background);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.project-visual {
  position: relative;
  height: 325px;
  overflow: hidden;
}

.project-visual-one {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 217, 95, 0.28), transparent 18%),
    linear-gradient(135deg, #e8e5ff 0%, #f6f4ff 55%, #ffe8df 100%);
}

.project-visual-two {
  background:
    radial-gradient(circle at 22% 15%, rgba(217, 87, 41, 0.25), transparent 17%),
    linear-gradient(135deg, #e8faff 0%, #f2f4ff 50%, #eeeaff 100%);
}

.project-count {
  position: absolute;
  top: 20px;
  left: 23px;
  color: rgba(23, 32, 51, 0.32);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.project-browser {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 75%;
  height: 230px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 23px 38px rgba(35, 37, 74, 0.20);
  transform: translateX(-50%) rotate(-3deg);
  transition: transform 450ms ease;
}

.project-card:hover .project-browser {
  transform: translateX(-50%) translateY(-8px) rotate(0deg);
}

.project-visual-two .project-browser {
  transform: translateX(-50%) rotate(3deg);
}

.project-card:hover .project-visual-two .project-browser {
  transform: translateX(-50%) translateY(-8px) rotate(0deg);
}

.mini-browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding-left: 9px;
  background: #f8f9fc;
  border-bottom: 1px solid #edf0f5;
}

.mini-browser-bar span {
  width: 5px;
  height: 5px;
  background: #cdd3df;
  border-radius: 50%;
}

.mini-browser-bar span:first-child {
  background: var(--orange);
}

.mini-browser-bar span:nth-child(2) {
  background: var(--green);
}

.project-screen {
  height: 100%;
  padding: 18px;
}

.project-screen-one {
  background: linear-gradient(145deg, #ffffff, #faf9ff);
}

.project-screen-two {
  background: linear-gradient(145deg, #fffdfc, #f6f7ff);
}

.project-screen-nav {
  width: 100%;
  height: 7px;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--purple) 15%, #dce0eb 15%, #dce0eb 60%, transparent 60%);
  border-radius: 5px;
}

.project-screen-title span {
  display: block;
  width: 72%;
  height: 11px;
  margin-bottom: 8px;
  background: var(--ink);
  border-radius: 4px;
}

.project-screen-title span:nth-child(2) {
  width: 54%;
}

.project-screen-title span:nth-child(3) {
  width: 35%;
  background: var(--orange);
}

.project-screen-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 25px;
}

.project-screen-columns span {
  display: block;
  height: 65px;
  background: rgba(91, 68, 241, 0.12);
  border-radius: 5px;
}

.project-screen-columns span:nth-child(2) {
  background: rgba(0, 217, 95, 0.15);
}

.project-screen-columns span:nth-child(3) {
  background: rgba(217, 87, 41, 0.13);
}

.project-screen-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 53px 65px;
  gap: 8px;
  margin-top: 22px;
}

.project-screen-dashboard span {
  display: block;
  background: rgba(91, 68, 241, 0.12);
  border-radius: 5px;
}

.project-screen-dashboard span:nth-child(2) {
  background: rgba(217, 87, 41, 0.16);
}

.project-screen-dashboard span:nth-child(3) {
  background: rgba(0, 217, 95, 0.14);
}

.project-screen-dashboard span:nth-child(4) {
  background: rgba(23, 32, 51, 0.08);
}

.project-decoration {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.decoration-one {
  right: 30px;
  bottom: 21px;
  width: 62px;
  height: 62px;
  background: var(--orange);
  opacity: 0.85;
}

.decoration-two {
  top: 48px;
  right: 64px;
  width: 21px;
  height: 21px;
  background: var(--purple);
}

.decoration-three {
  bottom: 36px;
  left: 42px;
  width: 68px;
  height: 68px;
  background: var(--purple);
  opacity: 0.86;
}

.decoration-four {
  top: 46px;
  right: 45px;
  width: 35px;
  height: 35px;
  background: var(--green);
}

.project-details {
  padding: 28px 30px 30px;
}

.project-category {
  margin-bottom: 9px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-details h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.project-details p {
  min-height: 75px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.project-tags span {
  padding: 5px 9px;
  color: var(--ink-light);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 600;
}

.portfolio-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* -------------------------
   Experience Lab  
------------------------- */

.experience-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 35%, rgba(91, 68, 241, 0.06), transparent 25%),
    radial-gradient(circle at 95% 78%, rgba(217, 87, 41, 0.06), transparent 23%),
    var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.effect-card {
  min-height: 345px;
  padding: 30px;
  overflow: hidden;
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.effect-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.effect-label {
  margin-bottom: 14px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.effect-card h3 {
  margin-bottom: 8px;
}

.effect-card > p {
  max-width: 410px;
  margin-bottom: 23px;
  font-size: 0.88rem;
}

.effect-demo {
  display: grid;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  background: #f0f2f9;
  border: 1px solid #e7e9f2;
  border-radius: 12px;
}

/* Magnetic demo */

.magnetic-demo {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 87, 41, 0.15), transparent 43%),
    #fffaf8;
}

.demo-magnetic-button {
  position: relative;
  z-index: 2;
  padding: 14px 19px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 11px 22px rgba(217, 87, 41, 0.25);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 100ms linear, background var(--transition);
}

.demo-magnetic-button:hover {
  background: var(--orange-dark);
}

.magnetic-demo::before,
.magnetic-demo::after {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(217, 87, 41, 0.28);
  border-radius: 50%;
  content: "";
}

.magnetic-demo::after {
  width: 82px;
  height: 82px;
  border-color: rgba(217, 87, 41, 0.20);
}

/* 3D card demo */

.effect-tilt .effect-demo {
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 68, 241, 0.16), transparent 52%),
    #f8f7ff;
  perspective: 700px;
}

.tilt-demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 166px;
  height: 99px;
  padding: 14px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, var(--purple), #8c7bff);
  border-radius: 12px;
  box-shadow: 0 18px 25px rgba(91, 68, 241, 0.28);
  transform-style: preserve-3d;
  transition: transform 100ms linear;
}

.tilt-demo-card > *:not(.tilt-shine) {
  position: relative;
  z-index: 2;
  transform: translateZ(18px);
}

.tilt-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(23deg);
}

.tilt-icon {
  display: grid;
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
  place-items: center;
  color: var(--purple);
  background: var(--white);
  border-radius: 7px;
  font-size: 0.78rem;
}

.tilt-demo-card strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.tilt-demo-card small {
  margin-top: 3px;
  font-size: 0.6rem;
  opacity: 0.72;
}

/* Before / After demo */

.comparison-demo {
  padding: 12px;
  background: #f7f8fc;
}

.comparison-wrapper {
  position: relative;
  width: min(100%, 290px);
  height: 104px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7eaf2;
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 12px;
  overflow: hidden;
}

.comparison-before {
  left: 0;
  width: 100%;
  color: #7b8495;
  background: #e2e4ea;
}

.comparison-after {
  right: 0;
  width: 50%;
  color: var(--white);
  background: var(--purple);
}

.comparison-before > span,
.comparison-after > span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.old-layout,
.new-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.old-layout i,
.new-layout i {
  display: block;
  height: 44px;
  background: #bec3cd;
  border-radius: 2px;
}

.old-layout i:nth-child(2) {
  height: 31px;
}

.old-layout i:nth-child(3) {
  height: 38px;
}

.new-layout {
  grid-template-columns: 1.4fr 1fr;
}

.new-layout i {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.new-layout i:first-child {
  grid-row: span 2;
  height: 51px;
  background: rgba(255, 255, 255, 0.75);
}

.new-layout i:nth-child(2) {
  height: 22px;
}

.new-layout i:nth-child(3) {
  height: 23px;
}

.comparison-slider {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.comparison-slider::-webkit-slider-thumb {
  width: 4px;
  height: 104px;
  appearance: none;
  background: var(--white);
  border: 0;
  box-shadow: 0 0 0 1px rgba(23, 32, 51, 0.15);
}

.comparison-slider::-moz-range-thumb {
  width: 4px;
  height: 104px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(23, 32, 51, 0.15);
}

/* Interactive background demo */

.effect-background .effect-demo {
  background: #17162c;
}

.interactive-grid {
  position: relative;
  width: 100%;
  height: 132px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  transition: background-position 100ms linear;
}

.grid-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, var(--green) 0%, rgba(0, 217, 95, 0.15) 35%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, -50%);
  transition: left 100ms linear, top 100ms linear;
}

.grid-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  transform: translate(-50%, -50%);
}

.experience-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 920px;
  margin: 42px auto 0;
  padding: 22px 24px;
  background: #f8f8fd;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.experience-footer p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 0.87rem;
}

/* -------------------------
   Why PCP Innovation  
------------------------- */

.why-section {
  background: var(--background);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.why-visual {
  position: relative;
  min-height: 445px;
}

.why-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-a {
  top: 15px;
  left: 6%;
  width: 275px;
  height: 275px;
  background: rgba(91, 68, 241, 0.13);
}

.shape-b {
  right: 6%;
  bottom: 10px;
  width: 156px;
  height: 156px;
  background: rgba(217, 87, 41, 0.17);
}

.why-panel {
  position: absolute;
  top: 48px;
  left: 50%;
  width: min(100%, 395px);
  overflow: hidden;
  background: var(--ink);
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%) rotate(-3deg);
}

.why-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--font-heading);
  font-size: 0.59rem;
  font-weight: 700;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-indicator i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.why-panel-content {
  padding: 42px 31px;
  background:
    radial-gradient(circle at 95% 2%, rgba(91, 68, 241, 0.48), transparent 30%),
    var(--ink);
}

.panel-overline {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-panel-content h3 {
  max-width: 280px;
  margin: 13px 0 32px;
  color: var(--white);
  font-size: 1.65rem;
}

.panel-progress {
  margin-top: 17px;
}

.panel-progress div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.67rem;
}

.panel-progress div strong {
  color: var(--white);
  font-family: var(--font-heading);
}

.panel-progress > i {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.panel-progress > i b {
  display: block;
  width: 88%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: inherit;
}

.panel-progress:nth-of-type(3) > i b {
  width: 95%;
}

.panel-progress:nth-of-type(4) > i b {
  width: 76%;
}

.why-content > p {
  max-width: 540px;
  margin-bottom: 30px;
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 13px;
}

.check-list > li > span {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.12);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.check-list p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

/* -------------------------
   Process  
------------------------- */

.process-section {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-grid::before {
  position: absolute;
  top: 33px;
  left: 12%;
  width: 76%;
  height: 1px;
  background: var(--border);
  content: "";
}

.process-item {
  position: relative;
  z-index: 1;
}

.process-number {
  display: grid;
  width: 67px;
  height: 67px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--purple);
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 9px var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-item:nth-child(2) .process-number {
  color: var(--orange);
}

.process-item:nth-child(3) .process-number {
  color: var(--green-dark);
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.process-item p {
  max-width: 220px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* -------------------------
   Contact  
------------------------- */

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(217, 87, 41, 0.27), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(91, 68, 241, 0.42), transparent 32%),
    var(--ink);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 80px;
}

.contact-intro h2 {
  max-width: 480px;
  color: var(--white);
}

.contact-intro > p {
  max-width: 470px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.02rem;
}

.contact-details {
  display: grid;
  gap: 17px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: fit-content;
  color: var(--white);
  font-size: 0.89rem;
  transition: color var(--transition), transform var(--transition);
}

.contact-detail:hover {
  color: var(--green);
  transform: translateX(4px);
}

.contact-detail-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  font-size: 0.84rem;
}

.contact-detail small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.contact-form {
  padding: 31px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  color: var(--ink);
  background: #fbfbfd;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input,
.form-group select {
  height: 46px;
  padding: 0 13px;
}

.form-group textarea {
  min-height: 124px;
  padding: 12px 13px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a4abba;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: var(--white);
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(91, 68, 241, 0.11);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* -------------------------
   Footer  
------------------------- */

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  background: #101726;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name span {
  color: rgba(255, 255, 255, 0.56);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 35px;
  padding-bottom: 43px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.72rem;
}

/* -------------------------
   Scroll reveals  
------------------------- */

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   Responsive: Tablet  
------------------------- */

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    margin-right: 20px;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }

  .browser-window {
    width: 100%;
  }

  .chip-code {
    left: -6px;
  }

  .why-grid {
    gap: 48px;
  }

  .contact-container {
    gap: 44px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 90px 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    box-shadow: 0 15px 28px rgba(23, 32, 51, 0.08);
    opacity: 0;
    transition: max-height 300ms ease, padding 300ms ease, opacity 250ms ease;
  }

  .main-nav.active {
    max-height: 500px;
    padding: 15px 24px 22px;
    border-color: var(--border);
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    font-size: 0.82rem;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid,
  .why-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 440px;
    margin: 0 auto;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    max-width: 620px;
    margin-top: 15px;
    margin-bottom: 0;
  }

  .value-grid {
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-visual {
    width: min(100%, 510px);
    margin: 0 auto;
  }

  .why-content {
    max-width: 680px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .process-grid::before {
    display: none;
  }

  .process-number {
    box-shadow: none;
  }

  .contact-intro {
    max-width: 600px;
  }

  .contact-form {
    max-width: 680px;
  }
}

/* -------------------------
   Responsive: Mobile  
------------------------- */

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .site-header {
    padding: 13px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .hero {
    padding-top: 55px;
    padding-bottom: 68px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 305px;
    margin-top: 6px;
  }

  .browser-window {
    top: 16px;
    height: 253px;
    border-radius: 12px;
  }

  .browser-topbar {
    height: 31px;
    padding: 0 11px;
  }

  .browser-dots span {
    width: 6px;
    height: 6px;
  }

  .browser-address {
    width: 115px;
    padding: 3px 6px;
    font-size: 0.43rem;
  }

  .browser-content {
    height: calc(100% - 31px);
    padding: 17px 20px;
  }

  .preview-hero {
    margin-top: 32px;
  }

  .preview-tag {
    margin-bottom: 8px;
    font-size: 0.35rem;
  }

  .preview-title span {
    height: 8px;
    margin-bottom: 5px;
  }

  .preview-copy {
    margin-top: 10px;
  }

  .preview-copy span {
    height: 3px;
    margin-bottom: 4px;
  }

  .preview-button {
    width: 49px;
    height: 15px;
    margin-top: 12px;
  }

  .stat-card-one {
    top: 48px;
    right: 15px;
    width: 98px;
    padding: 9px;
  }

  .stat-label {
    font-size: 0.39rem;
  }

  .stat-card-one strong {
    font-size: 0.78rem;
  }

  .mini-chart {
    gap: 2px;
    height: 22px;
    margin-top: 6px;
  }

  .mini-chart i {
    width: 6px;
  }

  .preview-float-card {
    right: 22px;
    bottom: 19px;
    padding: 6px 7px;
    font-size: 0.38rem;
  }

  .status-dot {
    width: 5px;
    height: 5px;
  }

  .floating-chip {
    padding: 6px 8px;
    font-size: 0.52rem;
  }

  .chip-code {
    top: 35px;
    left: -7px;
  }

  .chip-mobile {
    right: -4px;
    bottom: 1px;
  }

  .orbit-one {
    top: -18px;
    right: -48px;
    width: 255px;
    height: 255px;
  }

  .orbit-two {
    right: 28px;
    bottom: -17px;
    width: 160px;
    height: 160px;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .value-section {
    padding-top: 73px;
  }

  .value-grid,
  .work-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 25px 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
    padding: 27px 23px;
  }

  .service-card p {
    min-height: auto;
  }

  .project-visual {
    height: 265px;
  }

  .project-browser {
    top: 45px;
    width: 78%;
    height: 188px;
  }

  .project-details {
    padding: 24px 22px 25px;
  }

  .project-details p {
    min-height: auto;
  }

  .effect-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .experience-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
    padding: 20px;
  }

  .experience-footer .button {
    width: 100%;
  }

  .why-section {
    overflow: hidden;
  }

  .why-visual {
    min-height: 365px;
  }

  .shape-a {
    width: 220px;
    height: 220px;
  }

  .why-panel {
    top: 32px;
    width: 88%;
    border-width: 5px;
  }

  .why-panel-content {
    padding: 30px 22px;
  }

  .why-panel-content h3 {
    margin-bottom: 24px;
    font-size: 1.35rem;
  }

  .why-panel-top {
    padding: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
  }

  .process-number {
    grid-row: span 2;
    width: 53px;
    height: 53px;
    margin-bottom: 0;
  }

  .process-item h3 {
    align-self: end;
    margin-bottom: 3px;
  }

  .process-item p {
    align-self: start;
  }

  .contact-container {
    gap: 40px;
  }

  .contact-form {
    padding: 23px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    order: 2;
  }
}

/* -------------------------
   Accessibility  
------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================  
   IMÁGENES DEMOSTRATIVAS Y PÁGINAS INTERNAS  
   ========================================================= */

.hero-image-visual {
  min-height: 465px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 35px 75px rgba(42, 48, 80, 0.16);
}

.hero-image-visual > img {
  width: 100%;
  height: 100%;
  min-height: 465px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  filter: saturate(0.9);
}

.hero-image-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 32, 51, 0.68),
    rgba(91, 68, 241, 0.28),
    rgba(217, 87, 41, 0.12)
  );
  border-radius: 20px;
  content: "";
}

.hero-image-overlay {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  color: var(--white);
  background: rgba(23, 32, 51, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.hero-image-overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-image-overlay strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.hero-image-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.83rem;
}

.project-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 500ms ease, opacity 500ms ease;
}

.project-card:hover .project-photo {
  opacity: 0.62;
  transform: scale(1.06);
}

.project-visual .project-count,
.project-visual .project-browser,
.project-visual .project-decoration {
  z-index: 2;
}

.why-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0.38;
  filter: saturate(0.7);
}

.why-visual::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(91, 68, 241, 0.16),
    rgba(217, 87, 41, 0.12)
  );
  border-radius: 22px;
  content: "";
}

.why-shape,
.why-panel {
  z-index: 1;
}

.why-panel {
  z-index: 2;
}

/* Encabezados de páginas internas */

.inner-hero {
  padding: 100px 0 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 15%, rgba(91, 68, 241, 0.20), transparent 25%),
    radial-gradient(circle at 5% 95%, rgba(217, 87, 41, 0.16), transparent 25%),
    var(--background);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 65px;
}

.inner-hero-content p {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1.06rem;
}

.inner-hero-image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.inner-hero-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.inner-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 68, 241, 0.32), transparent);
  content: "";
}

.page-content {
  background: var(--white);
}

.page-image-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.page-image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-image-card-content {
  padding: 24px;
}

.page-image-card-content p {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .hero-image-visual,
  .hero-image-visual > img {
    min-height: 305px;
  }

  .hero-image-overlay {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px;
  }

  .hero-image-overlay strong {
    font-size: 1.05rem;
  }

  .inner-hero {
    padding: 70px 0 60px;
  }

  .inner-hero-image,
  .inner-hero-image img {
    min-height: 230px;
    height: 230px;
  }
}

/* =========================================================  
   SERVICE MODAL / POP-UP EXPERIENCE  
   ========================================================= */

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.service-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 32, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-modal-dialog {
  --modal-accent: var(--purple);

  position: relative;
  z-index: 2;
  width: min(100%, 880px);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.30);
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 260ms ease;
}

.service-modal.is-open .service-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.service-modal-close:hover {
  color: var(--white);
  background: var(--orange);
  transform: rotate(90deg);
}

.service-modal-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  min-height: 465px;
}

.service-modal-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(145deg, var(--modal-accent), var(--ink));
}

.service-modal-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.orbit-large {
  width: 310px;
  height: 310px;
}

.orbit-small {
  width: 185px;
  height: 185px;
  border-style: dashed;
}

.service-modal-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 98px;
  height: 98px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--modal-accent);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.20);
  font-size: 2.6rem;
  font-weight: 800;
}

.service-modal-label {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.77);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-modal-mini-card {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
}

.modal-mini-status {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 217, 95, 0.15);
}

.service-modal-content {
  padding: 56px 48px 42px;
}

.service-modal-overline {
  display: block;
  margin-bottom: 13px;
  color: var(--modal-accent);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-modal-content h2 {
  max-width: 480px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.service-modal-content > p {
  max-width: 510px;
  margin-bottom: 28px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-modal-includes {
  padding: 20px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.service-modal-includes strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.83rem;
}

.service-modal-includes ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-modal-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-light);
  font-size: 0.83rem;
}

.service-modal-includes li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--modal-accent);
  border-radius: 50%;
  content: "✓";
  font-size: 0.62rem;
  font-weight: 800;
}

.service-modal-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
}

.service-modal-footer .button-primary {
  background: var(--modal-accent);
  box-shadow: 0 12px 25px color-mix(in srgb, var(--modal-accent) 30%, transparent);
}

.service-modal-footer .button-primary:hover {
  filter: brightness(0.91);
}

.service-modal-note {
  color: var(--muted);
  font-size: 0.76rem;
}

@media (max-width: 700px) {
  .service-modal {
    padding: 14px;
  }

  .service-modal-grid {
    grid-template-columns: 1fr;
  }

  .service-modal-visual {
    min-height: 220px;
  }

  .service-modal-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    border-radius: 18px;
    font-size: 1.9rem;
  }

  .orbit-large {
    width: 220px;
    height: 220px;
  }

  .orbit-small {
    width: 125px;
    height: 125px;
  }

  .service-modal-mini-card {
    bottom: 16px;
    left: 16px;
  }

  .service-modal-content {
    padding: 31px 22px 27px;
  }

  .service-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .service-modal-footer .button {
    width: 100%;
  }
}

/* =========================================================  
   EXPERIENCE LAB — ADVANCED DEMOS  
   ========================================================= */

/* Shared platform effect details */

.effect-card {
  position: relative;
}

.effect-card:hover .effect-label {
  color: var(--orange);
}

.effect-demo {
  position: relative;
}

/* -------------------------
   Shopify Demo  
------------------------- */

.shopify-demo {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 15px;
  background: linear-gradient(135deg, #f9fbf9, #eef8f1);
}

.shopify-product-image {
  display: grid;
  height: 100px;
  place-items: center;
  color: var(--white);
  background: #5b44f1;
  border-radius: 10px;
  box-shadow: 0 12px 20px rgba(91, 68, 241, 0.22);
  font-size: 2rem;
  transition: background 300ms ease, transform 300ms ease;
}

.shopify-product-image:hover {
  transform: rotate(-5deg) scale(1.04);
}

.shopify-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.shopify-product-info strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.8rem;
}

.shopify-product-info small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
}

.shopify-price {
  color: var(--purple) !important;
}

.shopify-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-swatches {
  display: flex;
  gap: 7px;
}

.product-swatch {
  width: 17px;
  height: 17px;
  padding: 0;
  background: var(--swatch-color, var(--purple));
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--border-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-swatch:hover,
.product-swatch.active {
  box-shadow: 0 0 0 2px var(--ink);
  transform: scale(1.15);
}

.product-swatch[data-color="#5b44f1"] {
  background: #5b44f1;
}

.product-swatch[data-color="#d95729"] {
  background: #d95729;
}

.product-swatch[data-color="#00a958"] {
  background: #00a958;
}

.shopify-add-button {
  padding: 8px 11px;
  color: var(--white);
  background: #1f2c25;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 800;
  transition: background var(--transition), transform var(--transition);
}

.shopify-add-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.shopify-add-button.added {
  background: var(--green-dark);
}

/* -------------------------
   Responsive Device Demo  
------------------------- */

.device-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: #f5f6fb;
}

.device-preview {
  width: 100%;
  height: 94px;
  margin: auto;
  overflow: hidden;
  background: var(--white);
  border: 4px solid #252e42;
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(23, 32, 51, 0.13);
  transition: width 400ms ease, height 400ms ease, border-radius 400ms ease;
}

.device-preview.tablet {
  width: 58%;
  height: 104px;
  border-radius: 9px;
}

.device-preview.mobile {
  width: 29%;
  height: 118px;
  border-radius: 12px;
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 12px;
  padding-left: 6px;
  background: #e9ebf2;
}

.device-topbar span {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}

.device-topbar span:nth-child(2) {
  background: var(--green);
}

.device-topbar span:nth-child(3) {
  background: var(--purple);
}

.device-page {
  padding: 12px;
}

.device-page-nav {
  width: 100%;
  height: 5px;
  margin-bottom: 13px;
  background: linear-gradient(90deg, var(--purple) 18%, #e2e5ed 18%);
  border-radius: 4px;
}

.device-page-title {
  width: 61%;
  height: 10px;
  margin-bottom: 6px;
  background: var(--ink);
  border-radius: 3px;
}

.device-page-copy {
  width: 83%;
  height: 4px;
  margin-bottom: 9px;
  background: #d8dce6;
  border-radius: 3px;
}

.device-page-button {
  width: 38px;
  height: 10px;
  background: var(--orange);
  border-radius: 3px;
}

.device-controls {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.device-control {
  padding: 5px 8px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 700;
}

.device-control.active,
.device-control:hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

/* -------------------------
   WordPress Demo  
------------------------- */

.wordpress-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background: #f5f8fa;
}

.wp-window {
  display: grid;
  grid-template-columns: 35px 1fr;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe6ec;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.10);
}

.wp-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: #263238;
}

.wp-mark {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #263238;
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.wp-sidebar i {
  width: 13px;
  height: 3px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 4px;
}

.wp-editor {
  position: relative;
  min-height: 113px;
  padding: 14px;
}

.wp-editor-label {
  display: block;
  margin-bottom: 9px;
  color: #7d8994;
  font-size: 0.54rem;
}

.wp-editor strong {
  display: block;
  max-width: 170px;
  margin-bottom: 11px;
  color: #263238;
  font-family: var(--font-heading);
  font-size: 0.75rem;
}

.wp-editor-line {
  display: block;
  width: 70%;
  height: 4px;
  margin-bottom: 5px;
  background: #e1e6e9;
  border-radius: 4px;
}

.wp-editor-line.short {
  width: 46%;
}

.wp-publish-button {
  position: absolute;
  right: 11px;
  bottom: 10px;
  padding: 6px 9px;
  color: var(--white);
  background: #2271b1;
  border-radius: 4px;
  font-size: 0.56rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.wp-publish-button:hover {
  background: #135e96;
  transform: translateY(-1px);
}

.wp-publish-button.published {
  background: var(--green-dark);
}

.wp-published-message {
  display: block;
  height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0;
  transition: height 250ms ease, margin 250ms ease, opacity 250ms ease;
}

.wp-published-message.show {
  height: 18px;
  margin-top: 9px;
  opacity: 1;
}

/* -------------------------
   Elementor Demo  
------------------------- */

.elementor-demo {
  display: grid;
  grid-template-columns: 78px 1fr;
  overflow: hidden;
  background: #f8f9fc;
}

.elementor-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 7px;
  background: #25202f;
}

.elementor-panel-title {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.52rem;
  text-align: center;
  text-transform: uppercase;
}

.elementor-layer {
  padding: 6px 4px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  font-size: 0.55rem;
}

.elementor-layer.active,
.elementor-layer:hover {
  color: var(--white);
  background: #92003b;
  border-color: #92003b;
}

.elementor-canvas {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 16px;
  background:
    linear-gradient(rgba(91, 68, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 68, 241, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 15px 15px;
}

.canvas-heading {
  width: 74%;
  padding: 6px;
  color: var(--ink);
  border: 1px dashed transparent;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
}

.canvas-image {
  display: grid;
  width: 35px;
  height: 25px;
  margin: 6px 0;
  place-items: center;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.13);
  border: 1px dashed transparent;
  border-radius: 4px;
  font-size: 0.76rem;
}

.canvas-button {
  width: fit-content;
  padding: 5px 8px;
  color: var(--white);
  background: var(--orange);
  border: 1px dashed transparent;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 700;
}

.elementor-canvas.highlight-heading .canvas-heading,
.elementor-canvas.highlight-image .canvas-image,
.elementor-canvas.highlight-button .canvas-button {
  border-color: #92003b;
  box-shadow: 0 0 0 3px rgba(146, 0, 59, 0.10);
}

/* -------------------------
   Programming Code Demo  
------------------------- */

.code-demo {
  padding: 12px;
  background: #171b2b;
}

.code-window {
  width: 100%;
  overflow: hidden;
  background: #22283c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.code-tabs {
  display: flex;
  gap: 2px;
  padding: 7px 7px 0;
  background: #1b2032;
}

.code-tab {
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.50);
  background: transparent;
  border-radius: 4px 4px 0 0;
  font-size: 0.56rem;
  font-weight: 700;
}

.code-tab.active,
.code-tab:hover {
  color: var(--white);
  background: #303953;
}

.code-window pre {
  min-height: 84px;
  padding: 12px;
  margin: 0;
  overflow: hidden;
  color: #d6dcf0;
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  line-height: 1.65;
}

.code-window code span {
  color: #a99cff;
}

/* -------------------------
   Analytics Demo  
------------------------- */

.analytics-demo {
  display: block;
  padding: 15px;
  background: linear-gradient(135deg, #f7f8ff, #edf0ff);
}

.analytics-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
}

.analytics-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green-dark);
}

.analytics-live i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 13px 0;
}

.analytics-stats div {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.analytics-stats small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.51rem;
}

.analytics-stats strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.analytics-chart {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 42px;
}

.analytics-chart i {
  display: block;
  flex: 1;
  background: linear-gradient(var(--purple), #a99cff);
  border-radius: 3px 3px 1px 1px;
}

.analytics-chart i:nth-child(1) { height: 28%; }
.analytics-chart i:nth-child(2) { height: 40%; }
.analytics-chart i:nth-child(3) { height: 35%; }
.analytics-chart i:nth-child(4) { height: 61%; }
.analytics-chart i:nth-child(5) { height: 52%; }
.analytics-chart i:nth-child(6) { height: 75%; }
.analytics-chart i:nth-child(7) { height: 68%; }
.analytics-chart i:nth-child(8) { height: 100%; background: linear-gradient(var(--green), #75e6aa); }

/* -------------------------
   Smart Form Demo  
------------------------- */

.smart-form-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px;
  background: linear-gradient(135deg, #fffaf8, #f7f8ff);
}

.smart-input-wrap {
  position: relative;
}

.smart-email-input {
  width: 100%;
  height: 39px;
  padding: 0 35px 0 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 7px;
  outline: none;
  font-size: 0.7rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.smart-email-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91, 68, 241, 0.10);
}

.smart-email-input.valid {
  border-color: var(--green-dark);
}

.smart-email-input.invalid {
  border-color: var(--orange);
}

.smart-input-status {
  position: absolute;
  top: 50%;
  right: 11px;
  color: var(--green-dark);
  font-size: 0.9rem;
  transform: translateY(-50%);
}

.smart-form-message {
  color: var(--muted);
  font-size: 0.62rem;
}

.smart-form-message.valid {
  color: var(--green-dark);
}

.smart-form-message.invalid {
  color: var(--orange);
}

/* -------------------------
   Premium Toggle Demo  
------------------------- */

.premium-toggle-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  background: linear-gradient(135deg, #f7f5ff, #fff9f7);
}

.toggle-interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background 300ms ease, border-color 300ms ease;
}

.toggle-interface.active {
  background: #211c3c;
  border-color: #211c3c;
}

.toggle-interface small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.56rem;
}

.toggle-interface strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  transition: color 300ms ease;
}

.toggle-interface.active strong {
  color: var(--white);
}

.premium-toggle {
  position: relative;
  width: 42px;
  height: 23px;
  padding: 0;
  background: #d8dde8;
  border-radius: 20px;
  transition: background 300ms ease;
}

.premium-toggle span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 300ms cubic-bezier(0.3, 0.85, 0.4, 1.2);
}

.premium-toggle.active {
  background: linear-gradient(90deg, var(--orange), var(--purple));
}

.premium-toggle.active span {
  transform: translateX(19px);
}

.toggle-description {
  color: var(--muted);
  font-size: 0.65rem;
}

.toggle-description.active {
  color: var(--purple);
  font-weight: 700;
}

@media (max-width: 600px) {
  .shopify-demo {
    grid-template-columns: 80px 1fr;
  }

  .shopify-product-image {
    height: 80px;
  }

  .analytics-stats {
    gap: 5px;
  }

  .analytics-stats div {
    padding: 6px;
  }

  .device-preview.mobile {
    width: 35%;
  }
}

/* =========================================================  
   LIVE PROJECT THUMBNAILS  
   ========================================================= */

.project-external-link {
  display: block;
  cursor: pointer;
}

.project-website-thumbnail {
  opacity: 1 !important;
  filter: none;
  transform: scale(1);
}

.project-external-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(23, 32, 51, 0.05) 20%,
    rgba(23, 32, 51, 0.70) 100%
  );
  content: "";
  transition: background 350ms ease;
}

.project-external-link:hover::after {
  background: linear-gradient(
    180deg,
    rgba(91, 68, 241, 0.10) 10%,
    rgba(23, 32, 51, 0.80) 100%
  );
}

.project-external-link .project-photo {
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-external-link:hover .project-photo {
  opacity: 1;
  transform: scale(1.07);
}

.project-visit-label {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(23, 32, 51, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease, background 280ms ease;
}

.project-external-link:hover .project-visit-label {
  opacity: 1;
  transform: translateY(0);
}

.project-visit-label:hover {
  background: var(--orange);
}

.project-visit-label span {
  font-size: 0.95rem;
}

.project-external-link .project-count {
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 600px) {
  .project-visit-label {
    right: 14px;
    bottom: 14px;
    opacity: 1;
    transform: none;
    font-size: 0.61rem;
  }
}

/* =========================================================  
   POLICIES / LEGAL PAGE  
   ========================================================= */

.policy-hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(91, 68, 241, 0.18), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(217, 87, 41, 0.15), transparent 23%),
    var(--background);
}

.policy-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.policy-update-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 217, 95, 0.11);
}

.policy-navigation {
  padding-top: 55px;
  padding-bottom: 35px;
  background: var(--background);
}

.policy-navigation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.policy-nav-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(23, 32, 51, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.policy-nav-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.policy-nav-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.10);
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.policy-nav-card:nth-child(2) .policy-nav-icon {
  color: var(--orange);
  background: rgba(217, 87, 41, 0.11);
}

.policy-nav-card:nth-child(3) .policy-nav-icon {
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.11);
}

.policy-nav-card strong {
  display: block;
  margin-bottom: 1px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.75rem;
}

.policy-nav-card small {
  display: block;
  color: var(--muted);
  font-size: 0.63rem;
}

.policy-content-section {
  padding-top: 65px;
  background: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.policy-sidebar-title {
  margin-bottom: 7px;
  padding: 0 8px;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-sidebar a {
  padding: 8px;
  color: var(--ink-light);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.policy-sidebar a:hover {
  color: var(--purple);
  background: var(--white);
}

.policy-content {
  min-width: 0;
}

.policy-block {
  padding-bottom: 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--border);
}

.policy-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-block-label {
  margin-bottom: 14px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.policy-block h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.policy-block h3 {
  margin-top: 31px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.policy-block p {
  max-width: 760px;
  margin-bottom: 15px;
  font-size: 0.94rem;
  line-height: 1.78;
}

.policy-block p a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(91, 68, 241, 0.30);
  text-underline-offset: 3px;
}

.policy-block-highlight {
  padding: 35px;
  background:
    radial-gradient(circle at 95% 8%, rgba(91, 68, 241, 0.10), transparent 24%),
    #fbfbff;
  border: 1px solid #e2e3f7;
  border-radius: 16px;
}

.policy-important-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 760px;
  padding: 15px;
  margin: 0 0 28px;
  background: rgba(0, 217, 95, 0.08);
  border: 1px solid rgba(0, 217, 95, 0.18);
  border-radius: 10px;
}

.policy-important-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
}

.policy-important-icon {
  display: grid;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.policy-contact-block {
  padding: 33px;
  background:
    radial-gradient(circle at 96% 10%, rgba(217, 87, 41, 0.13), transparent 28%),
    var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.policy-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 24px 0;
}

.policy-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--ink-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.policy-contact-links a:hover {
  color: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.policy-contact-links span {
  color: var(--orange);
}

@media (max-width: 950px) {
  .policy-navigation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-sidebar-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .policy-navigation {
    padding-top: 30px;
  }

  .policy-navigation-grid {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
  }

  .policy-block {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .policy-block-highlight,
  .policy-contact-block {
    padding: 24px 18px;
  }

  .policy-contact-links {
    flex-direction: column;
  }

  .policy-contact-links a {
    width: 100%;
  }
}

/* =========================================================  
   PAYMENTS PAGE  
   ========================================================= */

.payment-hero {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 217, 95, 0.14), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(91, 68, 241, 0.14), transparent 25%),
    var(--background);
}

.payment-security-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  color: var(--ink-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.payment-security-note span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-size: 0.65rem;
}

.payment-options-section {
  background: var(--white);
}

.payment-heading {
  align-items: end;
  margin-bottom: 38px;
}

.payment-heading > p {
  max-width: 355px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 7px 22px rgba(23, 32, 51, 0.04);
}

.payment-card-featured {
  position: relative;
  border-color: rgba(91, 68, 241, 0.34);
  box-shadow: 0 12px 32px rgba(91, 68, 241, 0.10);
}

.payment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 31px;
  margin-bottom: 24px;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.payment-logo-stripe {
  color: #635bff;
  background: #f1f0ff;
  font-size: 0.9rem;
}

.payment-logo-bank {
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.10);
}

.payment-logo-paypal {
  color: #0070ba;
  background: #edf7ff;
}

.payment-recommended {
  padding: 5px 8px;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.09);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.payment-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.payment-card > p {
  min-height: 72px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.payment-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.payment-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-light);
  font-size: 0.78rem;
  line-height: 1.45;
}

.payment-list li span {
  display: grid;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.10);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
}

.payment-card .button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.payment-card small {
  min-height: 36px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.payment-button-disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.payment-policy-summary {
  background: var(--background);
}

.payment-policy-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: start;
}

.payment-policy-layout h2 {
  margin-bottom: 17px;
}

.payment-policy-layout > div > p {
  max-width: 450px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.payment-policy-points {
  display: grid;
  gap: 18px;
}

.payment-policy-point {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.payment-point-number {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--purple);
  background: rgba(91, 68, 241, 0.10);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
}

.payment-policy-point h3 {
  margin-bottom: 5px;
  font-size: 0.88rem;
}

.payment-policy-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.6;
}

.payment-help-section {
  padding-top: 40px;
  background: var(--white);
}

.payment-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 34px 38px;
  background:
    radial-gradient(circle at 93% 10%, rgba(217, 87, 41, 0.14), transparent 23%),
    var(--ink);
  border-radius: 16px;
}

.payment-help-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.payment-help-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
}

.payment-help-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  line-height: 1.65;
}

.payment-help-card .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.payment-help-card .button:hover {
  color: var(--white);
  background: var(--orange);
}

@media (max-width: 900px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-card > p {
    min-height: auto;
  }

  .payment-policy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .payment-help-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }

  .payment-help-card .button {
    width: 100%;
    justify-content: center;
  }
}

thank-you-page  
ty-header  
ty-card  
ty-success-icon  
ty-button  
/* =========================================================  
   THANK YOU PAGE — PCP INNOVATION  
   ========================================================= */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(91, 68, 241, 0.13), transparent 24%),
    radial-gradient(circle at 92% 85%, rgba(217, 87, 41, 0.14), transparent 25%),
    var(--background);
}

/* Decorative background elements */

.thank-you-page::before,
.thank-you-page::after {
  position: fixed;
  z-index: -1;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  content: "";
  filter: blur(75px);
  opacity: 0.22;
  pointer-events: none;
}

.thank-you-page::before {
  top: 12%;
  left: -190px;
  background: var(--purple);
}

.thank-you-page::after {
  right: -180px;
  bottom: 8%;
  background: var(--orange);
}

/* Header */

.ty-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 18px 0;
  background: rgba(252, 252, 254, 0.82);
  border-bottom: 1px solid rgba(228, 232, 241, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ty-header-content {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ty-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ty-brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  border-radius: 10px;
  box-shadow: 0 7px 17px rgba(91, 68, 241, 0.20);
  font-size: 1rem;
  font-weight: 800;
}

.ty-header-link {
  color: var(--ink-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color var(--transition);
}

.ty-header-link:hover {
  color: var(--purple);
}

/* Main layout */

.ty-main {
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
  padding: 92px 0;
  flex: 1;
  display: grid;
  place-items: center;
}

/* Thank you card */

.ty-card {
  width: min(100%, 700px);
  padding: 58px 64px 54px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ty-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--purple),
    var(--green)
  );
  content: "";
}

.ty-card::after {
  position: absolute;
  top: -145px;
  right: -135px;
  width: 290px;
  height: 290px;
  background: rgba(91, 68, 241, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

/* Success icon */

.ty-success-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 27px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(0, 217, 95, 0.12);
  border: 1px solid rgba(0, 217, 95, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(0, 217, 95, 0.06);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
}

.ty-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ty-eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 217, 95, 0.12);
  content: "";
}

.ty-card h1 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.ty-message {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink-light);
  font-size: 1.03rem;
  line-height: 1.75;
}

/* Buttons */

.ty-actions {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.ty-button {
  min-height: 52px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.ty-button:hover {
  transform: translateY(-2px);
}

.ty-button-primary {
  color: var(--white) !important;
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(217, 87, 41, 0.22);
}

.ty-button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(217, 87, 41, 0.32);
}

.ty-button-primary span {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.ty-button-primary:hover span {
  transform: translate(3px, -3px);
}

.ty-button-secondary {
  color: var(--ink) !important;
  background: var(--white);
  border: 1px solid var(--border-dark);
}

.ty-button-secondary:hover {
  color: var(--purple) !important;
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.ty-note {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Footer */

.ty-footer {
  padding: 25px 24px;
  color: rgba(255, 255, 255, 0.46);
  background: #101726;
  font-size: 0.72rem;
  text-align: center;
}

/* Mobile */

@media (max-width: 600px) {
  .ty-header {
    padding: 13px 0;
  }

  .ty-header-content,
  .ty-main {
    width: min(calc(100% - 32px), var(--container));
  }

  .ty-header-link {
    display: none;
  }

  .ty-main {
    padding: 54px 0 64px;
  }

  .ty-card {
    padding: 43px 23px 38px;
    border-radius: 22px;
  }

  .ty-success-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 23px;
    font-size: 2rem;
  }

  .ty-card h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .ty-message {
    font-size: 0.96rem;
  }

  .ty-actions {
    flex-direction: column;
    margin-top: 29px;
  }

  .ty-button {
    width: 100%;
  }
}