/* style.css - Custom Educational Style Framework */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --sendi-deep-base: #0b0f19;
  --sendi-surface-dark: #131b2e;
  --sendi-surface-light: #ffffff;
  --sendi-canvas-gray: #f4f6f9;
  --sendi-emerald-glow: #10b981;
  --sendi-emerald-deep: #047857;
  --sendi-accent-bright: #34d399;
  --sendi-text-lead: #0f172a;
  --sendi-text-body: #475569;
  --sendi-text-light: #f1f5f9;
  --sendi-text-muted: #94a3b8;
  --sendi-border-slate: #cbd5e1;
  --sendi-border-subtle: rgba(255, 255, 255, 0.08);
  --sendi-shadow-elevated: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --sendi-shadow-deep: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--sendi-text-body);
  background-color: var(--sendi-canvas-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sendi-text-lead);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.sendi-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--sendi-emerald-glow);
  width: 0;
  z-index: 10000;
  animation: sendi-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes sendi-progress-grow {
  to { width: 100%; }
}

/* Viewport Scroll Fade-In Setup */
.sendi-reveal-block {
  animation: sendi-reveal-animation linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes sendi-reveal-animation {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky Header */
.sendi-nav-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--sendi-surface-dark);
  border-bottom: 1px solid var(--sendi-border-subtle);
  padding: 1.2rem 2rem;
}

.sendi-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sendi-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--sendi-text-light);
}

.sendi-nav-logo svg {
  fill: var(--sendi-emerald-glow);
  width: 32px;
  height: 32px;
}

.sendi-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sendi-nav-item {
  color: var(--sendi-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.sendi-nav-item:hover {
  color: var(--sendi-emerald-glow);
}

/* Mobile Hamburger Style */
.sendi-hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.sendi-hamburger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--sendi-text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

#sendi-hamburger-toggle {
  display: none;
}

/* Fullscreen Hero Section - Preset A Style */
.sendi-hero-viewport {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--sendi-text-light);
  padding: 2rem;
}

.sendi-hero-viewport::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.75) 0%, rgba(11, 15, 25, 0.85) 100%);
  z-index: 1;
}

.sendi-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.sendi-hero-inner h1 {
  font-size: 3.5rem;
  color: var(--sendi-text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.sendi-hero-inner p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--sendi-text-muted);
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sendi-action-pill {
  display: inline-block;
  background-color: var(--sendi-emerald-glow);
  color: var(--sendi-surface-light) !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.sendi-action-pill:hover {
  background-color: var(--sendi-emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* Floating Statistics Bar - Preset A Style */
.sendi-stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.sendi-stats-grid {
  display: flex;
  justify-content: space-between;
  background-color: var(--sendi-surface-light);
  border-radius: 16px;
  box-shadow: var(--sendi-shadow-deep);
  overflow: hidden;
  border: 1px solid var(--sendi-border-slate);
}

.sendi-stats-tile {
  flex: 1;
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sendi-stats-tile:last-child {
  border-right: none;
}

.sendi-stats-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--sendi-emerald-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sendi-stats-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--sendi-text-body);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Zigzag Content Sections - Preset A slanted clip-paths */
.sendi-split-section {
  padding: 8dvh 0;
  background-color: var(--sendi-surface-light);
}

.sendi-split-section:nth-child(even) {
  background-color: var(--sendi-canvas-gray);
}

.sendi-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.sendi-split-text {
  flex: 1;
}

.sendi-split-tag {
  color: var(--sendi-emerald-glow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.sendi-split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--sendi-text-lead);
}

.sendi-split-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--sendi-text-body);
}

.sendi-split-visual {
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--sendi-shadow-elevated);
}

.sendi-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sendi-split-visual img:hover {
  transform: scale(1.03);
}

.sendi-slanted-right {
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
}

.sendi-slanted-left {
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

/* Grid Features - Preset A Style */
.sendi-features-section {
  padding: 10dvh 2rem;
  background-color: var(--sendi-canvas-gray);
}

.sendi-features-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.sendi-features-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.sendi-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.sendi-features-tile {
  background-color: var(--sendi-surface-light);
  padding: 3rem;
  border-radius: 16px;
  border-left: 5px solid var(--sendi-emerald-glow);
  box-shadow: var(--sendi-shadow-elevated);
  transition: all 0.3s ease;
}

.sendi-features-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-features-icon {
  background-color: rgba(16, 185, 129, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sendi-features-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--sendi-emerald-glow);
}

.sendi-features-tile h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--sendi-text-lead);
}

.sendi-features-tile p {
  color: var(--sendi-text-body);
  font-size: 1rem;
}

/* Timeline "Cara Kerja" - Vertical alternating timeline */
.sendi-chrono-section {
  padding: 10dvh 2rem;
  background-color: var(--sendi-surface-light);
}

.sendi-chrono-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.sendi-chrono-title h2 {
  font-size: 2.22rem;
}

.sendi-chrono-line {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.sendi-chrono-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--sendi-border-slate);
  transform: translateX(-50%);
}

.sendi-chrono-node {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  padding-right: 3rem;
}

.sendi-chrono-node:nth-child(even) {
  align-self: flex-end;
  margin-left: 50%;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 3rem;
}

.sendi-chrono-bullet {
  position: absolute;
  right: -18px;
  top: 10px;
  background-color: var(--sendi-emerald-glow);
  color: var(--sendi-text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  border: 4px solid var(--sendi-surface-light);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 5;
}

.sendi-chrono-node:nth-child(even) .sendi-chrono-bullet {
  left: -18px;
  right: auto;
}

.sendi-chrono-card {
  background-color: var(--sendi-canvas-gray);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--sendi-shadow-elevated);
}

.sendi-chrono-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--sendi-text-lead);
}

.sendi-chrono-card p {
  font-size: 0.95rem;
}

/* CTA Strip with background attachment */
.sendi-cta-strip {
  position: relative;
  padding: 10dvh 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--sendi-text-light);
  text-align: center;
}

.sendi-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.85);
  z-index: 1;
}

.sendi-cta-interior {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.sendi-cta-interior h2 {
  font-size: 2.5rem;
  color: var(--sendi-text-light);
  margin-bottom: 1.5rem;
}

.sendi-cta-interior p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--sendi-text-muted);
}

/* Expert Page Special layout styles */
.sendi-bio-layout {
  max-width: 1200px;
  margin: 5rem auto;
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
  align-items: center;
}

.sendi-bio-picture {
  flex: 1;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-bio-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sendi-bio-details {
  flex: 1.2;
}

.sendi-bio-details h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.sendi-bio-details p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Reserve Page minimal form styles */
.sendi-booking-layout {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.sendi-form-card {
  background-color: var(--sendi-surface-light);
  padding: 4rem;
  border-radius: 16px;
  box-shadow: var(--sendi-shadow-deep);
  border: 1px solid var(--sendi-border-slate);
}

.sendi-form-title {
  text-align: center;
  margin-bottom: 3rem;
}

.sendi-form-title h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.sendi-input-group {
  margin-bottom: 2rem;
}

.sendi-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--sendi-text-lead);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.sendi-form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--sendi-border-slate);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--sendi-canvas-gray);
  color: var(--sendi-text-lead);
  transition: all 0.3s ease;
}

.sendi-form-control:focus {
  outline: none;
  border-color: var(--sendi-emerald-glow);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.sendi-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.sendi-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sendi-emerald-glow);
}

.sendi-checkbox-wrap label {
  font-size: 0.85rem;
  color: var(--sendi-text-body);
}

.sendi-form-btn {
  width: 100%;
  background-color: var(--sendi-emerald-glow);
  color: var(--sendi-text-light);
  border: none;
  padding: 1.1rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.sendi-form-btn:hover {
  background-color: var(--sendi-emerald-deep);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.5);
}

.sendi-direct-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sendi-border-slate);
}

.sendi-direct-contact p {
  font-size: 0.9rem;
}

.sendi-direct-contact a {
  color: var(--sendi-emerald-glow);
  font-weight: 600;
}

/* FAQ Accordion */
.sendi-faq-container {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.sendi-faq-container h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.sendi-faq-card {
  background-color: var(--sendi-surface-light);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--sendi-shadow-elevated);
}

.sendi-faq-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--sendi-text-lead);
}

.sendi-faq-card p {
  font-size: 0.95rem;
  color: var(--sendi-text-body);
}

/* Info Cards for Reserve page layout context */
.sendi-info-cards-strip {
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.sendi-info-card-item {
  background-color: var(--sendi-surface-light);
  padding: 2.5rem;
  border-radius: 16px;
  border-top: 4px solid var(--sendi-emerald-glow);
  box-shadow: var(--sendi-shadow-elevated);
}

.sendi-info-card-item h4 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.sendi-info-card-list {
  list-style: none;
}

.sendi-info-card-list li {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.sendi-info-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sendi-emerald-glow);
  font-weight: bold;
}

/* Static Informational Pages (TOS/Privacy) */
.sendi-static-layout {
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
  background-color: var(--sendi-surface-light);
  border-radius: 16px;
  box-shadow: var(--sendi-shadow-elevated);
  padding: 5rem;
}

.sendi-static-layout h1 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--sendi-border-slate);
  padding-bottom: 1rem;
}

.sendi-static-layout h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.sendi-static-layout p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--sendi-text-body);
  line-height: 1.7;
}

/* Footer Section - Preset A (Dark) */
.sendi-footer-base {
  background-color: var(--sendi-deep-base);
  color: var(--sendi-text-muted);
  font-size: 0.9rem;
  padding: 5rem 2rem 3rem 2rem;
  border-top: 1px solid var(--sendi-border-subtle);
}

.sendi-footer-interior {
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.sendi-footer-desc-col {
  max-width: 400px;
}

.sendi-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--sendi-text-light);
  margin-bottom: 1.5rem;
}

.sendi-footer-logo svg {
  fill: var(--sendi-emerald-glow);
  width: 28px;
  height: 28px;
}

.sendi-footer-links-col {
  display: flex;
  gap: 4rem;
}

.sendi-footer-link-group h5 {
  color: var(--sendi-text-light);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  font-weight: 850;
}

.sendi-footer-link-group ul {
  list-style: none;
}

.sendi-footer-link-group li {
  margin-bottom: 0.75rem;
}

.sendi-footer-link-group a {
  font-size: 0.9rem;
  color: var(--sendi-text-muted);
}

.sendi-footer-link-group a:hover {
  color: var(--sendi-emerald-glow);
}

.sendi-disclaimer-card {
  border-top: 1px solid var(--sendi-border-subtle);
  padding-top: 2.5rem;
  text-align: center;
}

.sendi-disclaimer-card p {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-size: 0.82rem;
  line-height: 1.6;
}

.sendi-copyright {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Fixed Cookies Consent Banner */
.sendi-cookie-plate {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sendi-surface-dark);
  border-top: 1px solid var(--sendi-border-subtle);
  padding: 1.5rem 2rem;
  color: var(--sendi-text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.sendi-cookie-plate.active {
  transform: translateY(0);
}

.sendi-cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.sendi-cookie-text a {
  color: var(--sendi-emerald-glow);
  text-decoration: underline;
}

.sendi-cookie-actions {
  display: flex;
  gap: 1rem;
}

.sendi-cookie-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

#accept-cookie {
  background-color: var(--sendi-emerald-glow);
  color: var(--sendi-text-light);
}

#accept-cookie:hover {
  background-color: var(--sendi-emerald-deep);
}

#decline-cookie {
  background-color: transparent;
  color: var(--sendi-text-muted);
  border: 1px solid var(--sendi-border-subtle);
}

#decline-cookie:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--sendi-text-light);
}

/* Dynamic Responsive Rules */
@media (max-width: 1024px) {
  .sendi-hero-inner h1 {
    font-size: 2.8rem;
  }
  .sendi-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sendi-hamburger-label {
    display: flex;
  }
  .sendi-nav-links {
    position: fixed;
    top: 67px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 67px);
    background-color: var(--sendi-surface-dark);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #sendi-hamburger-toggle:checked ~ .sendi-nav-links {
    left: 0;
  }
  #sendi-hamburger-toggle:checked ~ .sendi-hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  #sendi-hamburger-toggle:checked ~ .sendi-hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  #sendi-hamburger-toggle:checked ~ .sendi-hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .sendi-hero-viewport {
    height: auto;
    padding: 8rem 1.5rem 6rem 1.5rem;
  }
  .sendi-hero-inner h1 {
    font-size: 2.2rem;
  }
  .sendi-stats-grid {
    flex-direction: column;
  }
  .sendi-stats-tile {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .sendi-split-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .sendi-slanted-right, .sendi-slanted-left {
    clip-path: none;
  }
  .sendi-chrono-line::before {
    left: 20px;
  }
  .sendi-chrono-node {
    width: 100%;
    padding-right: 0;
    padding-left: 3rem;
  }
  .sendi-chrono-node:nth-child(even) {
    margin-left: 0;
    padding-left: 3rem;
  }
  .sendi-chrono-bullet {
    left: 2px !important;
  }
  .sendi-bio-layout {
    flex-direction: column;
  }
  .sendi-info-cards-strip {
    grid-template-columns: 1fr;
  }
  .sendi-form-card {
    padding: 2rem;
  }
  .sendi-static-layout {
    padding: 2.5rem 1.5rem;
  }
  .sendi-cookie-plate {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .sendi-cookie-actions {
    justify-content: center;
  }
}