:root {
  --accent-blue: #1d4ed8;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --surface-light: #f8fafc;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #060c1a 0%, #0b1a3d 45%, #102060 100%);
  padding: 24px 20px 64px;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148,186,255,0.16) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(59,130,246,0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(29,78,216,0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Thin top accent line */
.hero-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,160,255,0.5) 40%, rgba(147,197,253,0.3) 60%, transparent 100%);
  z-index: 1;
}

.hero-network {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(255,255,255,0.35) 2px, transparent 4px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.35) 2px, transparent 4px),
    radial-gradient(circle at 55% 65%, rgba(255,255,255,0.35) 2px, transparent 4px),
    radial-gradient(circle at 35% 75%, rgba(255,255,255,0.25) 2px, transparent 4px);
  opacity: 0.7;
  animation: heroNodesFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 68px;
}

.hero-left {
  max-width: 640px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  margin-bottom: 32px;
  border: 1px solid rgba(99,160,255,0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15,30,90,0.85) 0%, rgba(20,45,120,0.75) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(220,235,255,0.95);
  box-shadow:
    0 0 0 1px rgba(99,160,255,0.08),
    0 8px 32px rgba(15,30,90,0.4),
    inset 0 1px 0 rgba(255,255,255,0.07);
  animation: badgeEntrance 0.7s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes badgeEntrance {
  from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* Left icon pill inside the badge */
.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 0 12px rgba(59,130,246,0.55), 0 0 24px rgba(59,130,246,0.2);
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Animated shimmer sweep */
.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(147,197,253,0.08) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: badgeShimmer 3.5s ease-in-out infinite 1s;
  pointer-events: none;
}

@keyframes badgeShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-badge {
  position: relative;
  overflow: hidden;
}

/* Dot separator */
.hero-badge-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(147,197,253,0.45);
  flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 720px;
}

.hero h1 span {
  color: #dbeafe;
}

.hero-subline {
  max-width: 520px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(180,205,255,0.75);
}

.hero-divider {
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  margin: 20px 0;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(37,99,235,0.4), 0 0 0 1px rgba(99,160,255,0.2);
}

.hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37,99,235,0.5), 0 0 0 1px rgba(99,160,255,0.3);
}

.hero-secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(200,220,255,0.9);
  border: 1px solid rgba(99,160,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(180,205,255,0.82);
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.trust-item-icon {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(99,160,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  color: #60a5fa;
  font-weight: 700;
}

/* =========================
   HERO SYMBOL STAGE
========================= */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}









/* =========================
   SYMBOL POSITIONING CLEAN GRID
========================= */



















/* =========================
   SECTION GENERELL
========================= */

section {
  padding: 80px 20px;
}

.about-grid,
.services-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.about-item,
.service-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

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

.service-box ul {
  padding-left: 18px;
  margin: 0;
}

.service-box li {
  margin-bottom: 8px;
}

/* =========================
   SERVICES OVERVIEW
========================= */

.services-overview {
  padding: 88px 20px;
  background: var(--surface-light);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-dark);
}

.section-subline {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 750;
  text-align: center;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-subtitle {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 600;
  margin-top: 70px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: -0.01em;
}

.services-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e8edf5;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #d6e3f8;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  font-size: 1.5rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.service-card-text {
  margin: 14px 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #1e293b;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-blue);
  background: #eff6ff;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-link:hover {
  transform: translateY(-1px);
  background: #dbeafe;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.10);
}

.services-note {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #64748b;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: #1e293b;
}

/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 56px;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(96, 165, 250, 0.07) 0%, transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
}

.portfolio-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.portfolio-kicker {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  margin: 0 0 24px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.portfolio-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 4.8rem);
  line-height: 0.98;
  color: var(--text-dark);
  letter-spacing: -0.05em;
}

.portfolio-subline {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.portfolio-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px auto 0;
}

.portfolio-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #dbe3ef;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.portfolio-section {
  padding: 44px 20px 80px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.05) 0%, transparent 28%),
    #f8fafc;
}

.portfolio-section-alt {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.05) 0%, transparent 26%),
    #ffffff;
}

.portfolio-group-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.portfolio-group-kicker {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.portfolio-group-head h2 {
  margin: 0;
}

.portfolio-group-subline {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.portfolio-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.portfolio-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #f1f5f9;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover .portfolio-icon {
  transform: scale(1.08);
  background: #e2e8f0;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.portfolio-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.portfolio-cta {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}

.portfolio-cta p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

.portfolio-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--accent-blue);
  background: #eff6ff;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-cta-button:hover {
  transform: translateY(-1px);
  background: #dbeafe;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.10);
}

/* =========================
   LIFEFILE SECTION
========================= */

.lifefile-teaser {
  padding: 90px 20px 100px;
  background:
    radial-gradient(circle at center top, rgba(37, 99, 235, 0.06) 0%, transparent 35%),
    #f8fafc;
}

.lifefile-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e8edf5;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lifefile-kicker {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.lifefile-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.lifefile-box p {
  max-width: 660px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.lifefile-name {
  margin-top: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js-reveal .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portfolio-card-featured {
  border-color: #cfe0ff;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.portfolio-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.14);
  border-color: #bfd6ff;
}

.portfolio-card-featured .portfolio-icon {
  background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.pricing-head {
  max-width: 700px;
  margin: 0 auto 60px;
}

.pricing-kicker {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.pricing-head p {
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card-highlight {
  border: 1px solid var(--accent-blue);
  background: #eff6ff;
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.price span {
  font-size: 0.9rem;
  color: #64748b;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  margin-bottom: 10px;
  color: #334155;
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 0.85rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 30px;
}

.pricing-cta {
  margin-top: 10px;
}

.pricing-card-featured {
  position: relative;
  border: 1px solid var(--accent-blue);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

/* =========================
   WHY JAROSERVICE
========================= */

.why-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.why-head {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-kicker {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.why-subline {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: #dbe3ef;
}

.why-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  font-size: 1.35rem;
}

.why-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.why-card p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services-cards,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 16px 48px;
  }

  .hero-inner {
  flex-direction: column;
  text-align: center;
  gap: 28px;
  padding: 20px 16px 48px;
}

.hero-left {
  max-width: 100%;
}

.hero-right {
  width: 100%;
}































  .hero-badge {
    font-size: 0.78rem;
    padding: 9px 14px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7.6vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-subline {
    max-width: 340px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    max-width: 340px;
  }

  .hero-trust {
    justify-content: center;
    margin-top: 24px;
    gap: 10px;
  }

  .trust-item {
    width: 100%;
    max-width: 340px;
    font-size: 0.9rem;
  }

  section {
    padding: 56px 16px;
  }

  .services-overview {
    padding: 70px 16px;
  }

  .section-subline {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 1.95rem;
    line-height: 1.15;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card-text,
  .service-list li,
  .services-note {
    font-size: 0.94rem;
  }

  .portfolio-hero {
    padding: 84px 16px 54px;
  }

  .portfolio-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .portfolio-badge {
    font-size: 0.78rem;
    padding: 9px 14px;
    margin-bottom: 16px;
  }

  .portfolio-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  .portfolio-subline {
    font-size: 0.96rem;
    max-width: 340px;
    line-height: 1.65;
  }

  .portfolio-trust {
    margin: 22px auto 0;
    gap: 10px;
  }

  .portfolio-trust-item {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .portfolio-section {
    padding: 34px 16px 72px;
  }

  .portfolio-group-head {
    margin-bottom: 30px;
  }

  .portfolio-group-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .portfolio-group-subline {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .portfolio-card h3 {
    font-size: 1.2rem;
  }

  .portfolio-card p,
  .portfolio-cta p {
    font-size: 0.94rem;
  }

  .pricing-section {
    padding: 72px 16px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .why-section {
    padding: 72px 16px;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .why-card h3 {
    font-size: 1.16rem;
  }

  .why-card p,
  .why-subline {
    font-size: 0.94rem;
  }
}

@keyframes heroGlowMove {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-20px) translateX(10px); }
  100% { transform: translateY(15px) translateX(-10px); }
}

@keyframes heroGridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 64px 64px, 64px 64px; }
}

@keyframes heroNodesFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(8px); }
}

@keyframes beforeFade {
  0%, 42% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes afterFade {
  0%, 42% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

/* =========================
   HERO SYMBOL STAGE (NEW)
========================= */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hs-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 440px;
}

.hs-stage::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  animation: hsGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes hsGlowPulse {
  from { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.hs-row-bottom {
  display: flex;
  gap: 12px;
  width: 100%;
}

/* Base card */
.hs-card {
  border-radius: 26px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.35), box-shadow 0.32s ease;
}

.hs-card:hover { transform: translateY(-7px) scale(1.03); }

.hs-main {
  width: 100%;
  padding: 24px 26px 22px;
  animation: hsFloat1 7s ease-in-out infinite;
  transform: scale(1.05);
}

.hs-small {
  flex: 1;
  padding: 18px 16px;
}

.hs-row-bottom .hs-card:nth-child(1) { animation: hsFloat2 6.5s ease-in-out infinite; }
.hs-row-bottom .hs-card:nth-child(2) { animation: hsFloat3 7.5s ease-in-out infinite; }
.hs-row-bottom .hs-card:nth-child(3) { animation: hsFloat1 6s   ease-in-out infinite; }

@keyframes hsFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes hsFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes hsFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hs-card-title { font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.2; }
.hs-card-sub   { color: rgba(255,255,255,0.58); line-height: 1.5; margin-top: 5px; }
.hs-main  .hs-card-title { font-size: 1.1rem; }
.hs-main  .hs-card-sub   { font-size: 0.88rem; }
.hs-small .hs-card-title { font-size: 0.9rem; }
.hs-small .hs-card-sub   { font-size: 0.74rem; }

/* ── MAIN: Digitale Ordnung ── */
.hs-main {
  background: linear-gradient(145deg, rgba(8,18,55,0.96) 0%, rgba(15,35,100,0.93) 100%);
  border: 1px solid rgba(99,179,255,0.28);
  box-shadow: 0 32px 72px rgba(5,12,45,0.65), inset 0 1px 0 rgba(255,255,255,0.09);
}

.hs-scanline {
  position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(99,179,255,0.022) 3px, rgba(99,179,255,0.022) 4px
  );
  pointer-events: none;
}

.hs-main-inner {
  display: flex; align-items: center; gap: 20px; position: relative;
}

.hs-orbit-wrap {
  position: relative; width: 72px; height: 72px; flex-shrink: 0;
}

.hs-orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(99,179,255,0.32);
  animation: hsSpin 9s linear infinite;
}

.hs-orbit-ring-2 {
  position: absolute; inset: 10px; border-radius: 50%;
  border: 1px dashed rgba(99,179,255,0.16);
  animation: hsSpin 5s linear infinite reverse;
}

@keyframes hsSpin { to { transform: rotate(360deg); } }

.hs-orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 10px #60a5fa, 0 0 20px rgba(96,165,250,0.5);
  top: -4px; left: calc(50% - 4px);
  transform-origin: 50% 40px;
  animation: hsSpin 9s linear infinite;
}

.hs-orbit-dot-2 {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #a5f3fc; box-shadow: 0 0 6px #a5f3fc;
  top: 5px; left: calc(50% - 2.5px);
  transform-origin: 50% 31px;
  animation: hsSpin 5s linear infinite reverse;
}

.hs-orbit-core {
  position: absolute; inset: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(59,130,246,0.55);
}

.hs-orbit-core svg { width: 20px; height: 20px; }

.hs-checklist {
  display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
}

.hs-check-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  animation: hsSlideIn 0.5s ease both;
}

.hs-check-item:nth-child(1) { animation-delay: 0.1s; }
.hs-check-item:nth-child(2) { animation-delay: 0.25s; }
.hs-check-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes hsSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: none; }
}

.hs-check-icon {
  width: 20px; height: 20px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.7rem;
}

.ci-blue   { background: rgba(59,130,246,0.25); }
.ci-green  { background: rgba(52,211,153,0.2); }
.ci-purple { background: rgba(167,139,250,0.2); }

.hs-check-label {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.88);
}

/* ── WLAN ── */
.hs-wlan {
  background: linear-gradient(145deg, rgba(30,12,2,0.96) 0%, rgba(60,22,4,0.93) 100%);
  border: 1px solid rgba(251,146,60,0.26);
  box-shadow: 0 22px 56px rgba(12,4,0,0.6), inset 0 1px 0 rgba(255,175,70,0.07);
}

.hs-radar-wrap {
  position: relative; width: 48px; height: 48px; margin-bottom: 12px;
}

.hs-radar-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(251,146,60,0.35);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: hsRadarPing 2.4s ease-out infinite;
}

.hs-radar-ring:nth-child(1) { width: 13px; height: 13px; animation-delay: 0s; }
.hs-radar-ring:nth-child(2) { width: 28px; height: 28px; animation-delay: 0.45s; }
.hs-radar-ring:nth-child(3) { width: 44px; height: 44px; animation-delay: 0.9s; }

@keyframes hsRadarPing {
  0%   { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.25); }
}

.hs-radar-sweep {
  position: absolute; width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,0.85));
  top: 50%; left: 50%; transform-origin: left center;
  animation: hsSweep 3s linear infinite;
}

@keyframes hsSweep { to { transform: rotate(360deg); } }

.hs-radar-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 12px #fb923c, 0 0 24px rgba(251,146,60,0.5);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}

.hs-signal-row { display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.hs-sig-bars   { display: flex; align-items: flex-end; gap: 3px; height: 15px; }

.hs-sig-bar { width: 5px; border-radius: 2px 2px 0 0; animation: hsBarPulse 2s ease-in-out infinite; }
.hs-sig-bar:nth-child(1) { height: 35%;  animation-delay: 0s;    background: rgba(251,146,60,0.5); }
.hs-sig-bar:nth-child(2) { height: 60%;  animation-delay: 0.15s; background: rgba(251,146,60,0.7); }
.hs-sig-bar:nth-child(3) { height: 82%;  animation-delay: 0.3s;  background: rgba(251,146,60,0.9); }
.hs-sig-bar:nth-child(4) { height: 100%; animation-delay: 0.45s; background: #fb923c; }

@keyframes hsBarPulse {
  0%,100% { filter: brightness(0.7); }
  50%     { filter: brightness(1.3) drop-shadow(0 0 4px rgba(251,146,60,0.6)); }
}

.hs-sig-text { font-size: 0.7rem; font-weight: 700; color: rgba(251,146,60,0.85); }

/* ── Geräte & Drucker ── */
.hs-gear {
  background: linear-gradient(145deg, rgba(16,7,40,0.96) 0%, rgba(30,12,75,0.93) 100%);
  border: 1px solid rgba(167,139,250,0.26);
  box-shadow: 0 22px 56px rgba(7,3,18,0.6), inset 0 1px 0 rgba(200,160,255,0.07);
}

.hs-bin-bg {
  position: absolute; inset: 0; border-radius: inherit;
  overflow: hidden; pointer-events: none; opacity: 0.18;
}

.hs-bin-col {
  position: absolute; top: -100%;
  font-size: 8px; font-family: monospace;
  color: #a78bfa; line-height: 1.5; white-space: pre;
  animation: hsBinFall linear infinite;
}

.hs-bin-col:nth-child(1) { left: 12%;  animation-duration: 3.4s; animation-delay: 0s; }
.hs-bin-col:nth-child(2) { left: 35%;  animation-duration: 2.9s; animation-delay: 0.6s; }
.hs-bin-col:nth-child(3) { left: 60%;  animation-duration: 3.8s; animation-delay: 1.1s; }
.hs-bin-col:nth-child(4) { left: 80%;  animation-duration: 2.6s; animation-delay: 0.3s; }

@keyframes hsBinFall { to { top: 200%; } }

.hs-gear-wrap {
  position: relative; width: 50px; height: 44px; margin-bottom: 12px;
}

.hs-gear-wrap svg {
  position: absolute; stroke-linecap: round; stroke-linejoin: round; fill: none;
}

.hs-g-big {
  width: 30px; height: 30px; stroke: #a78bfa; stroke-width: 1.6;
  top: 10px; left: 0;
  filter: drop-shadow(0 0 5px rgba(167,139,250,0.55));
  animation: hsGearCW 5s linear infinite;
}

.hs-g-small {
  width: 21px; height: 21px;
  stroke: rgba(196,181,253,0.75); stroke-width: 1.6;
  top: 0; left: 21px;
  animation: hsGearCCW 5s linear infinite;
}

@keyframes hsGearCW  { to { transform: rotate(360deg);  } }
@keyframes hsGearCCW { to { transform: rotate(-360deg); } }

/* ── Persönliche Hilfe ── */
.hs-help {
  background: linear-gradient(145deg, rgba(2,16,10,0.96) 0%, rgba(5,32,18,0.93) 100%);
  border: 1px solid rgba(52,211,153,0.26);
  box-shadow: 0 22px 56px rgba(0,7,3,0.6), inset 0 1px 0 rgba(80,255,170,0.07);
}

.hs-topo {
  position: absolute; inset: 0; border-radius: inherit;
  background-image: repeating-radial-gradient(
    circle at 55% 45%,
    transparent 0px, transparent 13px,
    rgba(52,211,153,0.045) 13px, rgba(52,211,153,0.045) 14px
  );
  pointer-events: none;
}

.hs-pin-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px; position: relative; padding: 0 4px;
}

.hs-pin-wrap { position: relative; width: 38px; height: 46px; flex-shrink: 0; }

.hs-pin-ping {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(52,211,153,0.45);
  animation: hsPingOut 2.5s ease-out infinite;
}

.hs-pin-ping-2 {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(52,211,153,0.25);
  animation: hsPingOut 2.5s ease-out 0.7s infinite;
}

@keyframes hsPingOut {
  0%   { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(1.9);  opacity: 0; }
}

.hs-pin-core {
  position: absolute; inset: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(52,211,153,0.55);
}

.hs-pin-core svg { width: 15px; height: 15px; }

.hs-chips { display: flex; flex-direction: column; gap: 5px; padding-right: 6px; }

.hs-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
}

.hs-chip-green {
  background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); color: #6ee7b7;
}

.hs-chip-blue {
  background: rgba(99,179,255,0.12); border: 1px solid rgba(99,179,255,0.24); color: #93c5fd;
}

.hs-chip-dot { width: 5px; height: 5px; border-radius: 50%; }
.cd-g { background: #4ade80; box-shadow: 0 0 5px #4ade80; }
.cd-b { background: #60a5fa; box-shadow: 0 0 5px #60a5fa; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hs-stage { width: 100%; max-width: 440px; }
}

@media (max-width: 768px) {
  .hero-right { display: none; }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  padding: 54px 20px 48px;
  padding-top: 80px;
  padding-bottom: 120px;
  background: #f7f7f7;
  min-height: calc(100vh - var(--header-h) - 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.legal-container {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  padding: 42px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  border: 1px solid #e8edf3;
}

.legal-container h1 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  color: #0f172a;
}

.legal-container h2 {
  margin: 30px 0 10px;
  font-size: 1.1rem;
  color: #1d4ed8;
}

.legal-container p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}

.legal-container a {
  color: #2563eb;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 34px 16px 64px;
  }

  .legal-container {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .legal-container h1 {
    margin-bottom: 22px;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 1600px) {
  .legal-page {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}
}
/* =========================
   ABOUT PAGE
========================= */

/* ── Hero ── */
.about-hero {
  background: linear-gradient(160deg, #060c1a 0%, #0b1a3d 45%, #102060 100%);
  padding: 80px 20px 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(148,186,255,0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

/* Photo placeholder */
.about-hero-photo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-photo-placeholder {
  width: 180px; height: 180px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(29,78,216,0.4), rgba(59,130,246,0.25));
  border: 1px solid rgba(99,160,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 56px rgba(5,12,45,0.5);
}

.about-photo-placeholder svg {
  width: 72px; height: 72px;
  stroke: rgba(147,197,253,0.6);
}

.about-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15,30,80,0.7);
  border: 1px solid rgba(99,160,255,0.22);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(200,220,255,0.9);
}

.about-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: hsGlowPulse 2s infinite;
}

/* Hero text */
.about-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin: 0 0 12px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.about-hero-sub {
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(180,205,255,0.78);
  max-width: 520px;
}

/* Stats row */
.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.about-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(180,205,255,0.65);
  margin-top: 4px;
}

.about-stat-sep {
  width: 1px; height: 36px;
  background: rgba(99,160,255,0.2);
}

/* ── Shared section layout ── */
.about-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.about-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

/* ── Story ── */
.about-story {
  padding: 88px 20px;
  background: #fff;
}

.about-story .about-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-story-text .section-kicker {
  margin: 0 0 10px;
}

.about-story-text h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.15;
}

.about-story-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.about-story-text p:last-child { margin-bottom: 0; }

/* Timeline */
.about-story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.about-tl-item {
  display: flex;
  gap: 18px;
  padding-bottom: 32px;
  position: relative;
}

.about-tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #e2e8f0, transparent);
}

.about-tl-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px currentColor;
}

.about-tl-dot-blue   { background: #3b82f6; color: #3b82f6; }
.about-tl-dot-purple { background: #8b5cf6; color: #8b5cf6; }
.about-tl-dot-green  { background: #10b981; color: #10b981; }
.about-tl-dot-orange { background: #f59e0b; color: #f59e0b; }

.about-tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.about-tl-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

/* ── Skills ── */
.about-skills {
  padding: 88px 20px;
  background: var(--surface-light);
}

.about-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-skill-card {
  background: #fff;
  border: 1px solid #e4eaf5;
  border-radius: 22px;
  padding: 28px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(15,23,42,0.08);
  border-color: #c8d9f5;
}

.about-skill-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.about-skill-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-skill-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Values ── */
.about-values {
  padding: 88px 20px;
  background: #fff;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-value-card {
  background: var(--surface-light);
  border: 1px solid #e4eaf5;
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15,23,42,0.07);
}

.about-value-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.about-value-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-value-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── CTA ── */
.about-cta {
  padding: 88px 20px;
  background: linear-gradient(135deg, #0f2d6b 0%, #1a56db 100%);
  text-align: center;
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.about-cta p {
  margin: 16px 0 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: #fff;
  color: #1a56db;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-story .about-section-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .about-hero-inner { flex-direction: column; text-align: center; gap: 32px; }
  .about-hero-sub { margin: 16px auto 0; }
  .about-hero-stats { justify-content: center; }
  .about-skills-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 48px 20px 56px; }
  .about-story, .about-skills, .about-values, .about-cta { padding: 64px 20px; }
  .about-photo-placeholder { width: 140px; height: 140px; }
  .about-photo-placeholder svg { width: 56px; height: 56px; }
}
