/* SaxoX Pro Marketing Site - Global Styles */

:root {
  --primary: #6827C7;
  --primary-light: #8e59e0;
  --primary-soft: #f4ecff;
  --primary-dark: #4b1a8e;
  --bg: #ffffff;
  --bg-muted: #f9fafb;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --danger: #ef4444;
  --success: #16a34a;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.14);
  --radius-card: 20px;
  --radius-pill: 999px;
  --header-height: 72px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.2rem;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  flex: 1;
}

section {
  padding: 80px 0;
}

section.section-tight {
  padding: 60px 0;
}

.section-muted {
  background-color: var(--bg-muted);
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin: 0;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(104, 39, 199, 0.3);
  background: #ffffff;
}

.brand-text-main {
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-text-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.98rem;
}

.nav-link {
  color: var(--text-muted);
  position: relative;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.96rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 14px 30px rgba(88, 28, 135, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 40px rgba(88, 28, 135, 0.6);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.9);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background-color: rgba(104, 39, 199, 0.03);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.86rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: white;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-lines {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines span {
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.25s ease, opacity 0.25s ease, translate 0.25s ease;
}

.hamburger.open .hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.98);
}

.nav-mobile-inner {
  padding: 0.5rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-mobile-link {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.nav-mobile-link.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.nav-mobile-cta {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
}

/* Hero (Home) */

.hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 0 0, #fef9c3 0, rgba(254, 249, 195, 0) 50%),
    radial-gradient(circle at 100% 0, #e0e7ff 0, rgba(224, 231, 255, 0) 55%),
    radial-gradient(circle at 0 100%, #fce7f3 0, rgba(252, 231, 243, 0) 60%),
    linear-gradient(135deg, #f9fafb, #fefeff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: center;
}

.hero-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem 0.25rem 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.4);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.hero-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-tagline {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.88);
  color: #e5e7eb;
}

.hero-heading {
  font-size: 3.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-heading span {
  background: linear-gradient(120deg, var(--primary), #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
  margin-bottom: 2.1rem;
  font-size: 0.95rem;
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-bullet-dot {
  margin-top: 0.36rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-note-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  border-radius: 28px;
  padding: 1.6rem 1.7rem;
  background: radial-gradient(circle at 0 0, rgba(254, 249, 195, 0.6), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(216, 180, 254, 0.7), transparent 55%),
    linear-gradient(135deg, #020617, #0f172a);
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-panel-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-panel-pill {
  font-size: 0.78rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-panel-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  align-items: flex-start;
}

.hero-chart {
  border-radius: 18px;
  padding: 1rem;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(244, 63, 94, 0.32), transparent 55%),
    rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.hero-chart-title {
  font-size: 0.78rem;
  color: #cbd5f5;
}

.hero-chart-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-chart-caption {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 120px;
}

.hero-chart-bar {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #22c55e, rgba(34, 197, 94, 0.15));
  position: relative;
  overflow: hidden;
}

.hero-chart-bar--high {
  background: linear-gradient(180deg, #f97316, rgba(249, 115, 22, 0.12));
}

.hero-chart-bar--peak {
  background: linear-gradient(180deg, #ef4444, rgba(239, 68, 68, 0.14));
}

.hero-chart-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.16), transparent);
}

.hero-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

.hero-stats {
  display: grid;
  gap: 0.75rem;
}

.hero-stat-card {
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.hero-stat-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.hero-stat-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-stat-pill {
  font-size: 0.72rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

.hero-stat-pill.danger {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

.hero-floating-card {
  position: absolute;
  bottom: -10px;
  right: -6px;
  transform: translateY(50%);
  border-radius: 18px;
  padding: 0.8rem 1rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.6);
}

.hero-floating-label {
  font-size: 0.72rem;
  color: #9ca3af;
}

.hero-floating-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.2rem;
}

.hero-floating-savings {
  font-size: 1.05rem;
  font-weight: 600;
  color: #4ade80;
}

.hero-floating-pill {
  font-size: 0.7rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
}

.hero-device {
  margin-top: 1.5rem;
  border-radius: 999px;
  padding: 0.35rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-device-label {
  font-size: 0.74rem;
  color: #9ca3af;
}

.hero-device-avatars {
  display: flex;
}

.hero-device-avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
  margin-left: -8px;
}

.hero-device-count {
  font-size: 0.74rem;
  color: #e5e7eb;
}

.hero-energy-photo {
  margin-top: 2.4rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-energy-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Generic components */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(104, 39, 199, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(129, 140, 248, 0.4);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #facc15, #f97316);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  background: white;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card-soft {
  border-radius: 18px;
  padding: 1.4rem 1.45rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: linear-gradient(135deg, #ffffff, #f9fafb);
}

.card-header {
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(104, 39, 199, 0.08);
  color: var(--primary-dark);
}

.muted {
  color: var(--text-muted);
}

.muted-small {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.16rem 0.65rem;
  font-size: 0.75rem;
  color: var(--primary-dark);
  background: rgba(104, 39, 199, 0.06);
}

.badge-outline {
  border-radius: 999px;
  padding: 0.14rem 0.6rem;
  font-size: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: var(--text-muted);
}

.badge-success {
  color: #15803d;
  background: rgba(34, 197, 94, 0.14);
}

.badge-neutral {
  color: #1f2937;
  background: rgba(148, 163, 184, 0.16);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  border-radius: 999px;
  padding: 0.16rem 0.7rem;
  font-size: 0.78rem;
  background: rgba(243, 244, 246, 0.9);
  color: #374151;
}

.divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 2.5rem 0;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.stat {
  min-width: 140px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Image blocks */

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.image-tag {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.image-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1rem;
}

.image-stack {
  position: relative;
}

.image-stack-primary {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-stack-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 48%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
  border: 2px solid #ffffff;
}

/* Timeline */

.timeline {
  border-left: 2px solid var(--border-subtle);
  padding-left: 1.5rem;
  margin-left: 0.6rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.6rem;
}

.timeline-dot {
  position: absolute;
  left: -1.7rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(104, 39, 199, 0.16);
  border: 2px solid var(--primary);
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.timeline-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* FAQ */

.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.faq-q {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: linear-gradient(145deg, #ffffff, #f9fafb);
}

.testimonial-quote {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Download section */

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #020617;
  color: #e5e7eb;
}

.store-badge span {
  font-size: 0.76rem;
  line-height: 1.3;
}

.store-badge strong {
  display: block;
  font-size: 0.86rem;
}

.qr-and-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.qr-box {
  border-radius: 18px;
  padding: 0.75rem;
  background: white;
  border: 1px dashed rgba(148, 163, 184, 0.9);
}

.download-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

/* Contact form */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.2rem;
}

.form-card {
  border-radius: 22px;
  padding: 1.7rem 1.8rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(209, 213, 219, 0.95);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.field-label span {
  color: #ef4444;
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.6rem 0.7rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-textarea {
  min-height: 120px;
  resize: vertical;
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-color: rgba(104, 39, 199, 0.9);
  box-shadow: 0 0 0 1px rgba(104, 39, 199, 0.6);
  background-color: #ffffff;
}

.field-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 0.25rem;
}

.field-inline {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.field-inline input[type="checkbox"] {
  margin-top: 0.15rem;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.86rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-card {
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  background: linear-gradient(135deg, #ffffff, #f9fafb);
}

.contact-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.4rem;
  font-size: 0.88rem;
}

/* Legal content */

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.legal-highlight {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
  border: 1px solid rgba(199, 210, 254, 0.9);
}

.legal-card {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  background: #ffffff;
}

.legal-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.legal-updated {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.legal-section-title {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal-important {
  border-left: 3px solid var(--primary);
  padding-left: 0.85rem;
  margin: 1.2rem 0;
  font-size: 0.96rem;
}

.legal-list {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-aside {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px dashed rgba(148, 163, 184, 0.95);
  background: #f9fafb;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: #ffffff;
  padding: 32px 0 22px;
  margin-top: 40px;
}

.footer-main {
  text-align: center;
  margin-bottom: 1.3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(104, 39, 199, 0.25);
}

.footer-text-main {
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Utilities */

.text-center {
  text-align: center;
}

.mt-xs {
  margin-top: 0.35rem;
}

.mt-sm {
  margin-top: 0.7rem;
}

.mt-md {
  margin-top: 1.2rem;
}

.mt-lg {
  margin-top: 1.8rem;
}

.mt-xl {
  margin-top: 2.3rem;
}

.max-w-md {
  max-width: 520px;
}

.max-w-lg {
  max-width: 640px;
}

.max-w-xl {
  max-width: 760px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.kbd {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.75rem;
  padding: 0.08rem 0.3rem;
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #f9fafb;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.table th {
  font-weight: 600;
  background: #f9fafb;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(209, 213, 219, 0.4);
}

.tag-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Animations */

.fade-in-up {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.15s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.3s;
}

.fade-in-up.delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .download-layout,
  .contact-layout,
  .legal-layout,
  .legal-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-panel {
    margin-top: 0.75rem;
  }

  .hero-floating-card {
    position: static;
    transform: none;
    margin-top: 1.1rem;
  }

  .image-stack-secondary {
    position: static;
    width: 70%;
    margin-top: 1rem;
  }

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

  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-bullets {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-energy-photo {
    margin-top: 1.5rem;
  }

  .grid-3,
  .grid-2,
  .testimonials,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


