/* ============================================================
   CATALIN DRAGHICI — Personal Brand Site
   Design: Vibrant gradients, dashboard aesthetic, light theme
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #F7F8FC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  --accent: #0A6FD4;
  --accent-dark: #0855A5;
  --accent2: #4F46E5;
  --accent3: #06B6D4;
  --accent4: #7C3AED;
  --accent5: #0D9488;
  --grad-hero: linear-gradient(160deg, #0F172A 0%, #1E293B 20%, #0A6FD4 55%, #4F46E5 75%, #7C3AED 100%);
  --grad-btn: linear-gradient(135deg, #0A6FD4 0%, #4F46E5 50%, #7C3AED 100%);
  --grad-cyan: linear-gradient(135deg, #06B6D4 0%, #0A6FD4 100%);
  --grad-purple: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-teal: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
  --grad-subtle: linear-gradient(135deg, #EEF2FF 0%, #E0F2FE 50%, #F0F9FF 100%);
  --grad-cta: linear-gradient(135deg, #0A6FD4 0%, #4F46E5 60%, #7C3AED 100%);
  --text-h: #0F172A;
  --text-b: #475569;
  --text-m: #94A3B8;
  --text-light: rgba(255,255,255,0.75);
  --border: rgba(15,23,42,0.06);
  --border-strong: rgba(15,23,42,0.1);
  --glass: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.18);
  --fd: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --fb: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.02);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--fb); color: var(--text-b); background: var(--bg); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--fd); color: var(--text-h); letter-spacing: -0.03em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; }
.section-tag { font-family: var(--fb); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; display: inline-block; }
.section-sub { font-size: 1.05rem; color: var(--text-b); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }

/* --- Navigation --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--transition), box-shadow var(--transition); }
.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-name { font-family: var(--fd); font-size: 1.3rem; color: white; letter-spacing: -0.02em; transition: color var(--transition); }
.nav.scrolled .nav-name { color: var(--text-h); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: var(--text-m); }
.nav.scrolled .nav-links a:hover { color: var(--text-h); }
.nav-cta { font-size: 0.82rem; font-weight: 500; background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.25); padding: 9px 22px; border-radius: var(--radius-sm); transition: all var(--transition); backdrop-filter: blur(4px); cursor: pointer; }
.nav-cta:hover { background: rgba(255,255,255,0.25); }
.nav.scrolled .nav-cta { background: var(--grad-btn); color: white; border-color: transparent; }

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; transition: all var(--transition); border-radius: 1px; }
.nav.scrolled .nav-toggle span { background: var(--text-h); }

/* --- Hero --- */
.hero { position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero-gradient { position: absolute; inset: 0; background: var(--grad-hero); z-index: 0; }
.hero-orbs { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.orb-1 { width: 400px; height: 400px; background: #06B6D4; top: -100px; right: 15%; animation: orbFloat 12s ease-in-out infinite; }
.orb-2 { width: 280px; height: 280px; background: #7C3AED; bottom: -60px; left: 8%; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb-3 { width: 320px; height: 320px; background: #0A6FD4; top: 30%; right: -80px; animation: orbFloat 14s ease-in-out infinite 2s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-15px, 10px); }
}
.hero-content { position: relative; z-index: 5; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 120px 0 80px; align-items: center; }
.hero-tag { font-family: var(--fb); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 16px; }
.hero h1 { color: #FFFFFF; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #7DD3FC; font-weight: 800; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { font-family: var(--fb); font-size: 0.9rem; font-weight: 500; background: white; color: var(--accent); border: none; padding: 13px 30px; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline { font-family: var(--fb); font-size: 0.9rem; font-weight: 400; background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.25); padding: 13px 30px; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.2); }

/* Hero photo area */
.hero-photo-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-photo { width: 100%; max-width: 400px; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.12); position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* Floating dashboard cards on hero */
.float-card { position: absolute; background: rgba(255,255,255,0.12); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 14px 18px; z-index: 6; animation: floatCard 6s ease-in-out infinite; }
.float-card.fc-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.float-card.fc-2 { top: 20px; right: -20px; animation-delay: 2s; }
.float-card.fc-3 { top: 50%; right: -40px; animation-delay: 4s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-label { font-size: 0.62rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.fc-value { font-family: var(--fd); font-size: 1.15rem; color: white; margin-top: 2px; }
.fc-bar { display: flex; gap: 3px; margin-top: 8px; }
.fc-bar-seg { height: 4px; border-radius: 2px; }
.fc-dots { display: flex; gap: 4px; margin-top: 8px; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; opacity: 0.7; }

/* --- Expertise Cards Row --- */
.expertise-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 40px 0; margin-top: -40px; position: relative; z-index: 10; }
.exp-card { background: var(--surface); border-radius: var(--radius); padding: 28px 22px; border: 0.5px solid var(--border); position: relative; overflow: hidden; transition: all var(--transition); }
.exp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.exp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.exp-card:nth-child(1)::before { background: var(--grad-btn); }
.exp-card:nth-child(2)::before { background: var(--grad-cyan); }
.exp-card:nth-child(3)::before { background: var(--grad-teal); }
.exp-card:nth-child(4)::before { background: var(--grad-purple); }
.exp-card-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.1rem; color: white; }
.exp-card-icon.i1 { background: var(--grad-btn); }
.exp-card-icon.i2 { background: var(--grad-cyan); }
.exp-card-icon.i3 { background: var(--grad-teal); }
.exp-card-icon.i4 { background: var(--grad-purple); }
.exp-card h3 { font-family: var(--fb); font-size: 0.95rem; font-weight: 600; color: var(--text-h); margin-bottom: 6px; }
.exp-card p { font-size: 0.82rem; color: var(--text-m); line-height: 1.55; }

/* --- Section Spacing --- */
.section { padding: 80px 0; }
.section-alt { background: var(--grad-subtle); }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--surface); border-radius: var(--radius); padding: 32px 28px; border: 0.5px solid var(--border); transition: all var(--transition); position: relative; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(10,111,212,0.15); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.2rem; color: white; }
.svc-card h3 { font-family: var(--fb); font-weight: 600; font-size: 1.05rem; color: var(--text-h); margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; line-height: 1.65; }

/* --- Capabilities / What I Drive --- */
.capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cap-item { display: flex; align-items: flex-start; gap: 16px; background: var(--surface); border-radius: var(--radius); padding: 24px; border: 0.5px solid var(--border); transition: all var(--transition); }
.cap-item:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.cap-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.cap-item:nth-child(1) .cap-dot { background: var(--accent); }
.cap-item:nth-child(2) .cap-dot { background: var(--accent2); }
.cap-item:nth-child(3) .cap-dot { background: var(--accent3); }
.cap-item:nth-child(4) .cap-dot { background: var(--accent4); }
.cap-item:nth-child(5) .cap-dot { background: var(--accent5); }
.cap-item:nth-child(6) .cap-dot { background: #EC4899; }
.cap-item:nth-child(7) .cap-dot { background: #F59E0B; }
.cap-item:nth-child(8) .cap-dot { background: #EF4444; }
.cap-item h4 { font-family: var(--fb); font-weight: 600; font-size: 0.95rem; color: var(--text-h); margin-bottom: 4px; }
.cap-item p { font-size: 0.82rem; color: var(--text-m); line-height: 1.55; }

/* --- Experience Timeline --- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent2), var(--accent4)); border-radius: 1px; }
.timeline-item { position: relative; padding: 0 0 40px 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 6px; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--accent); background: var(--bg); z-index: 2; }
.timeline-item:nth-child(2)::before { border-color: var(--accent2); }
.timeline-item:nth-child(3)::before { border-color: var(--accent3); }
.timeline-item:nth-child(4)::before { border-color: var(--accent4); }
.timeline-role { font-family: var(--fb); font-size: 1.05rem; font-weight: 600; color: var(--text-h); }
.timeline-co { font-size: 0.95rem; color: var(--accent); margin-top: 2px; }
.timeline-date { font-size: 0.78rem; color: var(--text-m); margin-top: 2px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-b); line-height: 1.65; margin-top: 10px; max-width: 520px; }

/* --- CTA Band --- */
.cta-band { background: var(--grad-cta); border-radius: var(--radius-lg); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; margin: 0 0 40px; }
.cta-band .orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); filter: blur(50px); }
.cta-orb-1 { width: 250px; height: 250px; top: -80px; right: 100px; }
.cta-orb-2 { width: 180px; height: 180px; bottom: -60px; left: 60px; }
.cta-text { position: relative; z-index: 2; }
.cta-text h2 { color: white; margin-bottom: 10px; font-size: 1.8rem; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 440px; }
.btn-cta { position: relative; z-index: 2; font-family: var(--fb); font-size: 0.9rem; font-weight: 500; background: white; color: var(--accent); border: none; padding: 14px 34px; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-family: var(--fb); font-size: 1.1rem; font-weight: 600; color: var(--text-h); margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-subtle); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--accent); }
.form-card { background: var(--surface); border-radius: var(--radius); padding: 36px; border: 0.5px solid var(--border); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-h); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); font-family: var(--fb); font-size: 0.9rem; color: var(--text-h); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(10,111,212,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { font-family: var(--fb); font-size: 0.9rem; font-weight: 500; background: var(--grad-btn); color: white; border: none; padding: 14px 36px; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); width: 100%; }
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,111,212,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--fb); color: var(--accent5); margin-bottom: 8px; }

/* --- Footer --- */
.footer { padding: 40px 0; border-top: 0.5px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.8rem; color: var(--text-m); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: var(--text-m); }
.footer-links a:hover { color: var(--accent); }

/* --- About Page Hero --- */
.page-hero { background: var(--grad-hero); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* --- Stats Row --- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: -40px 0 40px; position: relative; z-index: 10; }
.stat-card { background: var(--surface); border-radius: var(--radius); padding: 28px 24px; border: 0.5px solid var(--border); text-align: center; box-shadow: var(--shadow-sm); }
.stat-num { font-family: var(--fd); font-size: 2rem; color: var(--text-h); letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; color: var(--text-m); margin-top: 4px; }

/* --- Martech Badge Grid --- */
.badge-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 0.5px solid var(--border); border-radius: 20px; padding: 8px 16px; font-size: 0.8rem; color: var(--text-b); transition: all var(--transition); }
.badge:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* --- Zig-Zag Journey Timeline --- */
.journey { position: relative; padding: 20px 0; }
.journey::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent4), var(--accent2), var(--accent3), var(--accent)); transform: translateX(-50%); }
.journey-step { display: flex; align-items: flex-start; margin-bottom: 48px; position: relative; }
.journey-step:last-child { margin-bottom: 0; }
.journey-step:nth-child(odd) { flex-direction: row; }
.journey-step:nth-child(even) { flex-direction: row-reverse; }
.journey-card { width: calc(50% - 40px); background: var(--surface); border-radius: var(--radius); padding: 32px 28px; border: 0.5px solid var(--border); position: relative; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.journey-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.journey-card::after { content: ''; position: absolute; top: 28px; width: 16px; height: 16px; background: var(--surface); border: 0.5px solid var(--border); transform: rotate(45deg); }
.journey-step:nth-child(odd) .journey-card::after { right: -9px; border-left: none; border-bottom: none; }
.journey-step:nth-child(even) .journey-card::after { left: -9px; border-right: none; border-top: none; }
.journey-dot { position: absolute; left: 50%; top: 32px; width: 16px; height: 16px; border-radius: 50%; border: 3px solid var(--accent); background: var(--bg); transform: translateX(-50%); z-index: 2; }
.journey-step:nth-child(2) .journey-dot { border-color: var(--accent2); }
.journey-step:nth-child(3) .journey-dot { border-color: var(--accent3); }
.journey-step:nth-child(4) .journey-dot { border-color: var(--accent4); }
.journey-num { font-family: var(--fd); font-size: 2.4rem; color: var(--border); position: absolute; top: -8px; right: 24px; opacity: 0.5; }
.journey-step:nth-child(even) .journey-num { right: auto; left: 24px; }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-photo-wrap { display: none; }
  .expertise-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-text p { margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px 24px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open a { color: var(--text-b); }
  .expertise-row { grid-template-columns: 1fr; margin-top: -20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section { padding: 60px 0; }
  .journey::before { left: 16px; }
  .journey-step, .journey-step:nth-child(even) { flex-direction: row; }
  .journey-card { width: calc(100% - 48px); margin-left: 36px; }
  .journey-dot { left: 16px; transform: translateX(-50%); }
  .journey-card::after, .journey-step:nth-child(even) .journey-card::after { left: -9px; right: auto; border-right: none; border-top: none; border-left: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
  .journey-num { right: 16px !important; left: auto !important; }
}
