

/* Hero */
.fr-hero {
  background: linear-gradient(180deg, rgba(var(--itzone-black-rgb),.9) 0%, rgba(var(--itzone-black-rgb),.98) 100%);
  border-bottom: 1px solid rgba(var(--itzone-white-rgb), .04);
}
.fr-hero-title {
  font-family: var(--itzone-font-two);
  font-weight:700;
  color: var(--itzone-white);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  margin-bottom:0.4rem;
}
.fr-hero-sub {
  color: rgba(var(--itzone-white-rgb), .75);
  font-size: 1rem;
}

.fr-text{
    color: var(--itzone-white);
}

/* Buttons */
.thm-btn
/* Small hero card */
.fr-hero-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--itzone-white-rgb), .04);
}

.fr-thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    font-weight: 700;
    font-size: 17px;
    color: var(--itzone-white);
    padding: 10px 20px 9px;
    border-radius: var(--itzone-bdr-radius);
    transition: 0.5s 
    ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    gap: 10px;
    text-align: center;
    background-color: var(--itzone-base);
    z-index: 1;
}

.fr-thm-btn::before {
  content: "";
  background-color: var(--itzone-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.fr-thm-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.fr-thm-btn::after {
  content: "";
  background-color: rgba(var(--itzone-black-rgb), 0.3);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.fr-thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.fr-thm-btn span {
  font-size: 14px;
  position: relative;
  top: -1px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.fr-thm-btn:hover {
  color: var(--itzone-white);
   border: 1px solid #f18c35;
}


/* Side card */
.fr-side-card {
  background: linear-gradient(180deg, rgba(var(--itzone-white-rgb), .02), rgba(var(--itzone-white-rgb), .015));
  border: 1px solid rgba(var(--itzone-white-rgb), .035);
  min-height: 300px;
}
.fr-side-title {
  font-family: var(--itzone-font-two);
  color: var(--itzone-white);
  margin-bottom: .6rem;
}
.fr-side-text { color: rgba(var(--itzone-white-rgb), .7); }

/* Jurisdiction cards */
.fr-jur-card {
  background: linear-gradient(180deg, rgba(var(--itzone-white-rgb), .02), rgba(var(--itzone-white-rgb), .01));
  border: 1px solid rgba(var(--itzone-white-rgb), .04);
  height:100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
/* Hover effect */
.fr-jur-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 140, 53, 0.6);
  box-shadow: 0 0 20px rgba(241, 140, 53, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
/* Accent glow overlay (subtle light flash on hover) */
.fr-jur-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(241,140,53,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.fr-jur-card:hover::before {
  opacity: 1;
}

/* Bring text content above overlay */
.fr-jur-card * {
  position: relative;
  z-index: 1;
}

.fr-jur-badge {
  background: rgba(241, 140, 53, 0.2);
  color: var(--itzone-base);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .75rem;
  transition: all 0.3s ease;
}
.fr-jur-card:hover .fr-jur-badge {
  background: #f18c35;
  color: #fff;
}

/* Text accent on hover */
.fr-jur-card:hover .fr-text {
  color: #f18c35;
}

/* Pros/cons and services fade in a bit on hover */
.fr-jur-card:hover .fr-pros-cons,
.fr-jur-card:hover .fr-services {
  color: rgba(255,255,255,0.9);
  transition: color 0.4s ease;
}
.fr-badge-alt {
  background: rgba(255,255,255,.03);
  color: rgba(var(--itzone-white-rgb), .92);
}

.fr-pros-cons, .fr-services {
    color: rgba(var(--itzone-white-rgb), 0.85);
    font-size: 0.875rem;
    line-height: 1.4;
}


/* Comparison table */
/* Table wrapper */
.fr-compare-table {
    background: rgba(255, 140, 53, 0.05);
    border-radius: 12px;
    padding: 1rem;
    overflow-x: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Table styling */
.fr-compare-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 960px; /* horizontal scroll */
    color: rgba(var(--itzone-white-rgb), .92);
}

/* Table header */
.fr-compare-table thead th {
    background: rgba(241, 140, 53, 0.15);
    color: #f18c35;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgba(241,140,53,0.3);
    padding: 10px 8px;
    transition: all 0.3s ease;
}

.fr-compare-table thead th:hover {
    background: rgba(241,140,53,0.3);
    color: #fff;
}

/* Table body rows */
.fr-compare-table tbody tr {
    transition: all 0.3s ease;
}

.fr-compare-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.fr-compare-table tbody tr:hover {
    background: rgba(241, 140, 53, 0.08);
}

/* Table cells */
.fr-compare-table tbody td {
    padding: 8px 10px;
    text-align: center;
    border-top: 1px solid rgba(var(--itzone-white-rgb), 0.05);
}

/* Chips */
.fr-chip {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(241,140,53,0.3);
    color: #f18c35;
    background: rgba(241,140,53,0.1);
}

.fr-chip-high {
    background: #f18c35;
    color: #fff;
    border: 1px solid #f18c35;
}

.fr-chip-med {
    background: rgba(241,140,53,0.2);
    color: #f18c35;
    border: 1px solid rgba(241,140,53,0.3);
}
.fr-chip-avg {
    background: rgba(255, 255, 255, 0.2);
    color: #f18c35;
    border: 1px solid rgba(241,140,53,0.3);
}

.fr-chip:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(241,140,53,0.5);
}

/* Highlight the selected country */
.fr-compare-table th.fr-country,
.fr-compare-table td.fr-country {
  background: linear-gradient(135deg, rgba(241,140,53,0.05), rgba(241,140,53,0.12));
  color: #f18c35;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.fr-compare-table td.fr-country:hover {
  background: rgba(241, 140, 53, 0.15);
  box-shadow: 0 0 12px rgba(241, 140, 53, 0.4);
  color: #fff;
}


/* Steps */
.fr-section-title {
  font-family: var(--itzone-font-two);
  font-size: 1.5rem;
  margin-bottom: .25rem;
  color: var(--itzone-white);
}
.fr-lead { color: rgba(var(--itzone-white-rgb), .75); }

.fr-steps .fr-step {
  gap: 1rem;
}
.fr-step-num{
  min-width:44px;
  max-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(var(--itzone-white-rgb), .03), rgba(var(--itzone-white-rgb), .02));
  color: var(--itzone-white);
  font-weight:700;
  border: 1px solid rgba(var(--itzone-white-rgb), .03);
  margin-right: .75rem;
  font-family: var(--itzone-font-two);
}


/* CTA card */
.fr-cta {
  background: linear-gradient(180deg, rgba(241,140,53,.03), rgba(var(--itzone-black-rgb), .92));
}
.fr-cta-card {
  background: linear-gradient(90deg, rgba(var(--itzone-white-rgb), .02), rgba(var(--itzone-white-rgb), .01));
  border: 1px solid rgba(var(--itzone-white-rgb), .04);
}

/* Footer */
.fr-footer { color: rgba(var(--itzone-white-rgb), .55); }

/* Misc */
.fr-hero-logo { width: 64px; height:64px; object-fit:cover; }
.fr-features li { color: rgba(var(--itzone-white-rgb), .85); margin: .45rem 0; }
.fr-stats li { color: rgba(var(--itzone-white-rgb), .9); margin: .35rem 0; }

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .fr-hero-card { margin-top: .5rem; }
  .fr-compare-table table { min-width: 640px; }
}

@media (max-width: 575.98px) {
  .fr-hero-title { font-size: 1.4rem; }
  .fr-step-num { min-width:40px; min-height:40px; }
}

/* Utility small refinements */
.table td, .table th { vertical-align: middle; }
