.ark_sec_wrapper {
  --ark-primary: #e85427;
  --ark-success: #e85427;
  --ark-danger: #e85427;
  --ark-line: #cbd5e1;
  overflow-x: hidden;
}

/* --- USER DEFINED TYPOGRAPHY CLASSES --- */

h3 {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 2.12rem;
    
    font-family: system-ui;
    text-align: left;
}

/* --- ANIMATIONS --- */
.ark_sec_reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.ark_sec_reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ark_sec_pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--pulse-color), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0);
  }
}

/* --- CARD STYLES --- */
.ark_sec_card {
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%; /* Ensure equal height in grid */
  overflow: hidden;
  position: relative;
}

.ark_sec_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* --- ICON STYLES (Moved inside/top-left of card) --- */
.ark_sec_icon_circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  animation: ark_sec_pulse 2s infinite;
  background-color: #e85427;
}

/* --- SPECIFIC CARD TWEAKS --- */

/* Validity Card: Dashed Line between Info and Date */
.ark_sec_validity_separator {
  border-right: 2px dashed var(--ark-line);
}

/* Penalty Card: Left Border & Watermark */
.ark_sec_penalty_card {
  border-left: 6px solid #e85427;
  background: linear-gradient(120deg, #fff8de 60%, #ffffff 100%);
}
.ark_sec_watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  color: #e85427;
  opacity: 0.05;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .ark_sec_validity_separator {
    border-right: none;
    border-bottom: 2px dashed var(--ark-line);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.text_reg {
  color: #e85427;
}
.new_border {
  border-color: #e85427;
}

.ark_why_jan {
  /* Local Variables for this section only */
  --ark-orange: #e65123;
  --ark-dark: #2c2c2c;
  --ark-grey: #666666;
  --ark-bg-gradient: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);

  font-family: "Open Sans", sans-serif;
  background: var(--ark-bg-gradient);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* --- Typography Classes (Requested) --- */

/* --- Background Glow --- */
.ark_why_jan .glow-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 81, 35, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* --- Magic Card (Compact) --- */
.ark_why_jan .magic-card {
  position: relative;
  background: transparent;
  border-radius: 12px;
  /* Slightly tighter radius */
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Border Animation Layer */
.ark_why_jan .magic-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    transparent,
    transparent,
    var(--ark-orange) 30%
  );
  animation: spinBorder 4s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

/* Inner White Card */
.ark_why_jan .magic-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: 10px;
  z-index: 1;
}

/* Sheen Effect */
.ark_why_jan .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 10;
  pointer-events: none;
}

.ark_why_jan .magic-card:hover .card-content::before {
  left: 200%;
  transition: left 0.6s ease;
}

/* Content Layer (Compact Padding) */
.ark_why_jan .card-content {
  position: relative;
  z-index: 2;
  padding: 25px 20px;
  /* Reduced padding from 40px to 25px */
  height: 100%;
}

.ark_why_jan .magic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(230, 81, 35, 0.12);
}

/* Icon Styling (Smaller) */
.ark_why_jan .icon-box {
  width: 50px;
  height: 50px;
  /* Reduced from 65px */
  background: #fff5f2;
  color: var(--ark-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.ark_why_jan .magic-card:hover .icon-box {
  background: var(--ark-orange);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

/* Sub-headings */
.ark_why_jan h5 {
  color: var(--ark-dark);
  font-weight: 600;
  font-size: 1.05rem;
  /* Compact size */
  margin-bottom: 8px;
}

@keyframes spinBorder {
  100% {
    transform: rotate(360deg);
  }
}

/* --- Center Image --- */
.ark_why_jan .center-image-container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ark_why_jan .arch-mask {
  border-radius: 500px 500px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  /* Reduced width */
  border-bottom: 5px solid #e65123;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.5s ease;
}

.ark_why_jan .arch-mask:hover {
  transform: scale(1.02);
}

.ark_why_jan .arch-mask img {
  width: 100%;
  height: auto;
  display: block;
}
/* marquee */

.recognition-marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.recognition-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: recognitionScroll 12s linear infinite;
}

.recognition-track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.recognition-track img {
  height: 32px;
  width: auto;
  display: block;
}

/* Smooth infinite scroll */
@keyframes recognitionScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on touch/hover (optional) */
.recognition-marquee:active .recognition-track,
.recognition-marquee:hover .recognition-track {
  animation-play-state: paused;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .recognition-track {
    animation: none;
  }
}
/* stats marquee */

.stats-marquee {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.stats-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: statsScroll 14s linear infinite;
}

/* Smaller cards for mobile */
.stat-item--mini {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  min-width: 220px;
}

.stat-item--mini .stat-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.stat-item--mini .stat-number {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
}

.stat-item--mini .stat-label {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.2;
}

@keyframes statsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on press (optional) */
.stats-marquee:active .stats-track,
.stats-marquee:hover .stats-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .stats-track {
    animation: none;
  }
}
.agreement-process-container {
  background-color: #ffffff;
  color: #0a192f;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.agreement-process-container * {
  box-sizing: border-box;
}

.agreement-process-container .header-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.agreement-process-container .flow-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

/* Horizontal connecting line */
.agreement-process-container .flow-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: #e2e8f0;
  z-index: 1;
}

.agreement-process-container .step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.agreement-process-container .icon-box {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.agreement-process-container .icon-box i {
  font-size: 28px;
  color: #0a192f;
}

.agreement-process-container .step-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e95726;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.agreement-process-container .step-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
  padding: 0 10px;
  color: #0a192f;
  transition: color 0.3s ease;
}

.agreement-process-container .step-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  padding: 0 15px;
}

/* Hover Interactions */
.agreement-process-container .step-item:hover .icon-box {
  border-color: #e95726;
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.agreement-process-container .step-item:hover h3 {
  color: #e95726;
}

/* Tablet and Mobile Adaptability */
@media (max-width: 900px) {
  .agreement-process-container .flow-grid {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  .agreement-process-container .flow-grid::before {
    width: 1px;
    height: 85%;
    left: 75px;
    top: 50px;
    right: auto;
  }
  .agreement-process-container .step-item {
    flex-direction: row;
    text-align: left;
    margin-bottom: 50px;
    opacity: 1 !important; /* Forces visibility if JS is blocked */
    transform: none !important;
  }
  .agreement-process-container .icon-box {
    margin-bottom: 0;
    margin-right: 30px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }
  .agreement-process-container .text-content {
    display: flex;
    flex-direction: column;
  }
}

/* // */

/* Scoped Container to prevent global style leakage */
.ark-agreement-wrapper {
  --ark-navy: #000;
  --ark-blue: #e95726;
  --ark-slate: #64748b;
  --ark-border: #e2e8f0;
  --ark-bg-light: #f8fafc;

  color: var(--ark-navy);
  padding: 80px 0;
}

.ark-agreement-wrapper {
  line-height: 1.6;
  color: var(--ark-slate);
  margin-bottom: 2rem;
}

.ark-agreement-wrapper .section-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ark-blue);
  display: block;
  margin-bottom: 1rem;
}

.ark-agreement-wrapper .icon-box {
  width: 42px;
  height: 42px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ark-navy);
  margin-bottom: 1rem;
}

.ark-agreement-wrapper .pricing-shell {
  background: var(--ark-bg-light);
  border: 1px solid var(--ark-border);
  border-radius: 16px;
  padding: 40px;
}

.ark-agreement-wrapper .plan-card {
  background: #ffffff;
  border: 1px solid var(--ark-border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.ark-agreement-wrapper .plan-card:hover {
  border-color: var(--ark-blue);
  transform: translateY(-2px);
}

.ark-agreement-wrapper .plan-card.featured {
  border-top: 4px solid var(--ark-blue);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.ark-agreement-wrapper .ark-btn {
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: block;
}

.ark-agreement-wrapper .ark-btn-outline {
  border: 1px solid var(--ark-navy);
  color: var(--ark-navy);
}

.ark-agreement-wrapper .ark-btn-outline:hover {
  background: var(--ark-navy);
  color: #fff;
}

.ark-agreement-wrapper .ark-btn-solid {
  background: var(--ark-navy);
  color: #fff;
  border: none;
}

.ark-agreement-wrapper .ark-btn-solid:hover {
  background: #1e293b;
}

.ark-agreement-wrapper .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.ark-agreement-wrapper .check-list li {
  font-size: 0.9rem;
  color: var(--ark-slate);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ark-agreement-wrapper .check-svg {
  color: var(--ark-blue);
  flex-shrink: 0;
}

.ark-agreement-wrapper .ark-badge {
  background: #dbeafe;
  color: var(--ark-blue);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ark-agreement-wrapper .legal-footer {
  font-size: 0.75rem;
  color: var(--ark-slate);
  border-top: 1px solid var(--ark-border);
  margin-top: 30px;
  padding-top: 20px;
  opacity: 0.8;
}
