/* AspirePower — AI ops power systems */

:root {
  --violet: #6D28D9;
  --violet-dark: #5B21B6;
  --violet-light: #8B5CF6;
  --cyan: #0891B2;
  --cyan-dark: #0E7490;
  --cyan-light: #22D3EE;
  --off-white: #FAFAFA;
  --grey: #71717A;
  --grey-light: #E4E4E7;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --dark: #18181B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 28px rgba(109, 40, 217, 0.08);
  --shadow-lg: 0 16px 56px rgba(109, 40, 217, 0.16);
  --gradient: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  --gradient-hover: linear-gradient(135deg, var(--violet-dark) 0%, var(--cyan-dark) 100%);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--violet);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cyan);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--grey);
  font-size: 1.125rem;
  margin-top: 0.75rem;
}

/* Buttons — violet-cyan gradient */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}

.btn-outline:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

.logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover {
  opacity: 0.85;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--grey);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--violet);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.header-cta {
  white-space: nowrap;
}

/* Hero — aspiration dashboard */
.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse at 80% 20%, rgba(8, 145, 178, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(109, 40, 217, 0.1) 0%, transparent 50%),
              var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--gradient);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--amber);
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--dark);
}

.hero-badge span {
  font-size: 0.8125rem;
  color: var(--grey);
}

/* Stats — violet bar */
.stats-violet {
  background: var(--gradient);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-violet::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
  max-width: 220px;
  margin: 0 auto;
}

/* Aspire package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.package-card.featured {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.package-card.featured h3,
.package-card.featured .package-price {
  color: #fff;
}

.package-card.featured .package-features li {
  color: rgba(255, 255, 255, 0.9);
}

.package-card.featured .package-features li::before {
  color: var(--amber);
}

.package-tier {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.package-card.featured .package-tier {
  color: var(--amber);
}

.package-card h3 {
  margin-bottom: 0.75rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 1.25rem;
}

.package-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
}

.package-card.featured .package-price span {
  color: rgba(255, 255, 255, 0.75);
}

.package-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.package-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--grey);
  padding-left: 1.25rem;
  position: relative;
}

.package-features li::before {
  content: '▲';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  color: var(--violet);
  top: 0.55rem;
}

.package-card .btn {
  width: 100%;
}

.package-card.featured .btn-outline {
  background: #fff;
  color: var(--violet);
  border-color: #fff;
}

.package-card.featured .btn-outline:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

/* Power gauge strip */
.power-gauge-strip {
  background: var(--dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.power-gauge-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.3) 0%, rgba(8, 145, 178, 0.3) 100%);
}

.power-gauge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.power-gauge-copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.power-gauge-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.gauge-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.gauge-meters {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gauge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gauge-label {
  width: 130px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  flex-shrink: 0;
}

.gauge-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--gradient);
  transition: width 1.2s ease;
}

.gauge-value {
  width: 48px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--amber);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--violet-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--grey);
  font-size: 0.9375rem;
}

/* Summit roadmap — unique peak layout */
.summit-roadmap {
  background: linear-gradient(180deg, var(--off-white) 0%, #EDE9FE 40%, #CFFAFE 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.summit-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 2rem;
}

.summit-mountain {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.summit-peak {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 180px;
  transition: all 0.6s ease;
  opacity: 0.5;
  transform: translateY(20px);
}

.summit-peak.summit-lit {
  opacity: 1;
  transform: translateY(0);
}

.peak-shape {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 0 solid transparent;
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(109, 40, 217, 0.15));
}

.summit-peak:nth-child(1) .peak-shape {
  border-bottom: 120px solid #C4B5FD;
}

.summit-peak:nth-child(2) .peak-shape {
  border-bottom: 180px solid #A78BFA;
  margin-bottom: -30px;
}

.summit-peak:nth-child(3) .peak-shape {
  border-bottom: 240px solid #7C3AED;
  margin-bottom: -60px;
}

.summit-peak:nth-child(4) .peak-shape {
  border-bottom: 300px solid var(--violet);
  margin-bottom: -90px;
}

.summit-peak:nth-child(5) .peak-shape {
  border-bottom: 360px solid var(--cyan-dark);
  margin-bottom: -120px;
}

.summit-peak.summit-lit .peak-shape {
  filter: drop-shadow(0 12px 28px rgba(109, 40, 217, 0.3));
}

.peak-flag {
  position: absolute;
  top: -28px;
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.summit-peak.summit-lit .peak-flag {
  opacity: 1;
}

.peak-marker {
  position: absolute;
  top: 12px;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.summit-peak.summit-lit .peak-marker {
  opacity: 1;
}

.peak-info {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.peak-phase {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.peak-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.peak-info p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
}

.summit-trail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.summit-trail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--gradient);
  transform: translateY(-50%);
  border-radius: 3px;
  opacity: 0.4;
}

.trail-node {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 3px solid var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet);
}

.trail-node.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.summit-caption {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summit-caption p {
  color: var(--grey);
  font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--dark);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--grey);
}

.testimonial-rating {
  color: var(--amber);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* Gradient CTA */
.cta-gradient {
  padding: 5rem 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-inner .btn {
  background: #fff;
  color: var(--violet);
  border-color: #fff;
}

.cta-inner .btn:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

/* Footer note */
.footer-note {
  background: #fff;
  border-top: 1px solid var(--grey-light);
  padding: 2rem 0;
  text-align: center;
}

.footer-note p {
  font-size: 0.875rem;
  color: var(--grey);
  max-width: 700px;
  margin: 0 auto;
}

.footer-note strong {
  color: var(--violet);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--cyan-light);
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--cyan-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

/* Page hero */
.page-hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(109, 40, 217, 0.08) 0%, transparent 60%), var(--off-white);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--violet);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--grey);
  font-size: 1.125rem;
  max-width: 600px;
}

/* Collection */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--grey-light);
  background: #fff;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.collection-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.collection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.collection-card.hidden {
  display: none;
}

.collection-card img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.collection-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.collection-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.collection-ref {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
  font-family: var(--font-heading);
}

.collection-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(8, 145, 178, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
}

.collection-price {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.collection-card-body p {
  color: var(--grey);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
  text-align: center;
}

.value-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--grey);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card span {
  font-size: 0.8125rem;
  color: var(--grey);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--grey);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: 0.8125rem;
  color: #EF4444;
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08) 0%, rgba(8, 145, 178, 0.08) 100%);
  border: 1px solid var(--violet-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--grey);
  font-size: 0.9rem;
}

/* Legal */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

.legal-meta {
  background: #fff;
  border-left: 4px solid var(--violet);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}

.legal-meta p {
  font-size: 0.9rem;
  color: var(--grey);
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
  color: var(--violet);
}

.legal-content p,
.legal-content li {
  color: var(--grey);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Service detail cards */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-detail-body {
  padding: 2rem;
}

.service-detail-body h3 {
  margin-bottom: 0.75rem;
}

.service-detail-body p {
  color: var(--grey);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.service-detail-card:nth-child(5) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-detail-card:nth-child(5) img {
  height: 100%;
  min-height: 260px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.25rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.875rem;
  margin: 0;
  flex: 1;
  min-width: 260px;
}

.cookie-inner a {
  color: var(--cyan-light);
}

.btn-accept {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-accept:hover {
  background: var(--gradient-hover);
}

/* Animations */
.js .slide-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.js .slide-up.visible,
.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .team-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--grey-light);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .power-gauge-inner {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    margin-top: 1.5rem;
  }

  .stats-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .summit-mountain {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .summit-peak {
    max-width: 100%;
  }

  .peak-shape {
    border-left-width: 50px;
    border-right-width: 50px;
  }

  .summit-peak:nth-child(1) .peak-shape { border-bottom-width: 80px; margin-bottom: 0; }
  .summit-peak:nth-child(2) .peak-shape { border-bottom-width: 100px; margin-bottom: 0; }
  .summit-peak:nth-child(3) .peak-shape { border-bottom-width: 120px; margin-bottom: 0; }
  .summit-peak:nth-child(4) .peak-shape { border-bottom-width: 140px; margin-bottom: 0; }
  .summit-peak:nth-child(5) .peak-shape { border-bottom-width: 160px; margin-bottom: 0; }

  .summit-trail {
    display: none;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-card img {
    width: 100%;
    height: 180px;
  }

  .form-row,
  .service-detail-grid,
  .service-detail-card:nth-child(5) {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(5) {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Progressive enhancement scroll animations */
.slide-up, .fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .4s ease, transform .4s ease;
}
html.js .slide-up, html.js .fade-in {
  opacity: 0;
  transform: translateY(28px);
}
html.js .slide-up.visible, html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
