/* =========================================================
   EASY BIZ DEAL – HERO SECTION (FINAL)
   Drop-in replacement
   ========================================================= */

/* =========================
   PRIMARY HERO
   ========================= */

.ebd-hero{
  position: relative;
  min-height: clamp(460px, 72vh, 560px);
  margin-bottom: 0;

  background-image:
    linear-gradient(
      to bottom right,
      rgba(15,23,42,0.78),
      rgba(15,23,42,0.58)
    ),
    url("/assets/img/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;

  padding-bottom: clamp(44px, 7vw, 72px);
}

/* =========================
   HERO OVERLAY (DEPTH)
   ========================= */

.ebd-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 420px at 80% 20%,
      rgba(37,99,235,0.18),
      transparent 60%
    ),
    radial-gradient(
      800px 380px at 0% 100%,
      rgba(99,102,241,0.15),
      transparent 60%
    );
  pointer-events: none;
}

/* =========================
   HERO CONTAINER
   ========================= */

.ebd-hero__container{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HERO CONTENT
   ========================= */

.ebd-hero__content{
  max-width: 640px;
  color: #ffffff;
}

/* Breadcrumb */

.ebd-hero__breadcrumb{
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.ebd-hero__breadcrumb a{
  color: #ffffff;
  text-decoration: none;
}

.ebd-hero__breadcrumb span{
  margin: 0 6px;
}

/* =========================
   HERO TITLE
   ========================= */

.ebd-hero h1{
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* =========================
   HERO DESCRIPTION
   ========================= */

.ebd-hero p{
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.75;
  color: #e5e7eb;
  margin-bottom: 32px;
  max-width: 600px;
}

/* =========================
   HERO ACTIONS
   ========================= */

.ebd-hero__actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary CTA */

.ebd-btn-primary{
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(37,99,235,0.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

@media (hover:hover){
  .ebd-btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(37,99,235,0.45);
    filter: brightness(1.05);
  }
}

/* =========================
   HERO → SERVICES BLEND
   ========================= */

.ebd-hero::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,0),
    rgba(248,250,252,1)
  );
  pointer-events: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px){
  .ebd-hero{
    min-height: 420px;
    padding-bottom: 44px;
  }

  .ebd-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .ebd-btn-primary{
    width: 100%;
    justify-content: center;
  }
}

@media (max-height: 700px){
  .ebd-hero{
    min-height: 420px;
  }
}
/* =========================================================
   SERVICES HUB – PRO VERSION (FINAL)
   ========================================================= */

.ebd-svHub{
  position: relative;
  padding: clamp(56px, 7vw, 72px) 20px;
  background:
    radial-gradient(900px 320px at 95% 0%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(900px 340px at 0% 10%, rgba(99,102,241,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

/* =========================
   CONTAINER
   ========================= */

.ebd-svHub__wrap{
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.ebd-svHub__head{
  max-width: 860px;
  margin-bottom: 40px;
}

.ebd-svHub__head h2{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ebd-svHub__head p{
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
  max-width: 65ch;
}

/* =========================
   GRID
   ========================= */

.ebd-svHub__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   SERVICE CARD
   ========================= */

.ebd-svHubCard{
  position: relative;
  display: block;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ebd-svHubCard::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 220px at 20% 0%, rgba(37,99,235,0.10), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

@media (hover:hover){
  .ebd-svHubCard:hover{
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.35);
    box-shadow:
      0 30px 90px rgba(2,6,23,0.14),
      0 0 0 1px rgba(37,99,235,0.08);
  }

  .ebd-svHubCard:hover::after{
    opacity: 1;
  }
}

/* =========================
   ICON
   ========================= */

.ebd-svHubCard__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.10);
  margin-bottom: 14px;
  color: #0f172a;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ebd-svHubCard__icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (hover:hover){
  .ebd-svHubCard:hover .ebd-svHubCard__icon{
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(2,6,23,0.18);
  }
}

/* Accent colors */
.ebd-c1{ background: rgba(37,99,235,0.14); border-color: rgba(37,99,235,0.22); }
.ebd-c2{ background: rgba(99,102,241,0.14); border-color: rgba(99,102,241,0.22); }
.ebd-c3{ background: rgba(5,150,105,0.14); border-color: rgba(5,150,105,0.22); }
.ebd-c4{ background: rgba(245,158,11,0.16); border-color: rgba(245,158,11,0.26); }
.ebd-c5{ background: rgba(236,72,153,0.14); border-color: rgba(236,72,153,0.22); }

/* =========================
   TEXT
   ========================= */

.ebd-svHubCard h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f172a;
}

@media (hover:hover){
  .ebd-svHubCard:hover h3{
    color: #2563eb;
  }
}

.ebd-svHubCard p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}

/* =========================
   LINK
   ========================= */

.ebd-svHubCard__link{
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #2563eb;
}

.ebd-svHubCard__link::after{
  content: "→";
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

@media (hover:hover){
  .ebd-svHubCard:hover .ebd-svHubCard__link::after{
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   CTA CARD
   ========================= */

.ebd-svHubCTA{
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(37,99,235,0.35);
  box-shadow: 0 30px 90px rgba(37,99,235,0.35);
}

.ebd-svHubCTA h3{
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
}

.ebd-svHubCTA p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.ebd-svHubCTA__btn{
  display: inline-flex;
  padding: 13px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #1e40af;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px){
  .ebd-svHub__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .ebd-svHub{
    padding: 48px 16px;
  }

  .ebd-svHub__grid{
    grid-template-columns: 1fr;
  }
}

/* CTA placement on desktop */
@media (min-width: 1025px){
  .ebd-svHubCTA{
    grid-column: 2 / span 2;
  }
}
/* =========================================================
   EASY BIZ DEAL – UNCOMMON SYSTEM (FINAL AUTHORITATIVE)
   ========================================================= */

/* =========================
   DESIGN TOKENS
   ========================= */

:root{
  --ebd-ink:#0b1220;
  --ebd-ink2:#111827;
  --ebd-text:#0f172a;
  --ebd-muted:#475569;
  --ebd-line:rgba(15,23,42,0.10);
  --ebd-paper:#f6f7f9;
  --ebd-white:#ffffff;
  --ebd-violet:#7c3aed;
}

/* =========================
   BUTTON SYSTEM
   ========================= */

.ebd-opBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  text-decoration:none;
  min-height:44px;
  transition:transform .15s ease, filter .15s ease, background .15s ease;
}

.ebd-opBtn--primary{
  background:var(--ebd-ink);
  color:#ffffff;
  box-shadow:0 18px 40px rgba(2,6,23,.18);
}

.ebd-opBtn--primary:hover{
  transform:translateY(-1px);
  filter:brightness(.95);
}

.ebd-opBtn--ghost{
  background:transparent;
  color:var(--ebd-ink);
  border:1px solid var(--ebd-line);
}

.ebd-opBtn--ghost:hover{
  background:rgba(2,6,23,.04);
}

/* =========================================================
   OPERATING MODEL HERO
   ========================================================= */

.ebd-opHero{
  position:relative;
  background:var(--ebd-paper);
  padding:clamp(36px,5vw,56px) 20px;
  border-bottom:1px solid rgba(2,6,23,.08);
  overflow:hidden;
}

/* ---------- Background Grid ---------- */

.ebd-opHero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(2,6,23,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(2,6,23,.06) 1px, transparent 1px),
    radial-gradient(900px 340px at 90% 10%, rgba(124,58,237,.08), transparent 60%),
    radial-gradient(1000px 420px at 0% 0%, rgba(2,6,23,.06), transparent 55%);
  background-size:56px 56px,56px 56px,auto,auto;
  opacity:.65;
  pointer-events:none;
}

/* ---------- Layout ---------- */

.ebd-opHero__wrap{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
  align-items:start;
}

/* =========================
   LEFT CONTENT PANEL
   ========================= */

.ebd-opHero__content{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(2,6,23,.10);
  border-radius:22px;
  padding:26px;
  box-shadow:0 30px 90px rgba(2,6,23,.10);
  backdrop-filter:blur(8px);
}

.ebd-opHero__kicker{
  display:inline-flex;
  gap:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(2,6,23,.72);
  margin-bottom:10px;
}

.ebd-opHero__title{
  margin:0 0 12px;
  font-size:clamp(28px,4vw,44px);
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--ebd-ink);
}

.ebd-opHero__lead{
  margin:0 0 18px;
  font-size:16.5px;
  line-height:1.75;
  color:rgba(15,23,42,.82);
  max-width:65ch;
}

.ebd-opHero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.ebd-opHero__meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.ebd-opChip{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(2,6,23,.10);
  font-size:12.5px;
  font-weight:800;
  color:rgba(2,6,23,.78);
}

/* =========================
   RIGHT PANEL (PROCESS)
   ========================= */

.ebd-opHero__panel{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(2,6,23,.10);
  border-radius:22px;
  padding:18px;
  box-shadow:0 30px 90px rgba(2,6,23,.10);
  backdrop-filter:blur(8px);
}

.ebd-opHero__panelTop{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.ebd-opStamp{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(2,6,23,.72);
}

.ebd-opLine{
  flex:1;
  height:1px;
  background:rgba(2,6,23,.12);
}

.ebd-opSteps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ebd-opStep{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.65);
}

.ebd-opStep__n{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  color:rgba(124,58,237,.9);
  margin-bottom:6px;
}

.ebd-opStep__t{
  font-size:14px;
  font-weight:900;
  color:var(--ebd-ink);
  margin-bottom:4px;
}

.ebd-opStep__d{
  font-size:13.5px;
  line-height:1.55;
  color:rgba(15,23,42,.78);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1024px){
  .ebd-opHero__wrap{
    grid-template-columns:1fr;
  }

  .ebd-opHero__panel{
    margin-top:12px;
  }
}

@media (max-width:390px){
  .ebd-opHero__actions{
    flex-direction:column;
  }

  .ebd-opBtn{
    width:100%;
  }

  .ebd-opChip{
    font-size:11.5px;
    padding:6px 8px;
  }
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion:reduce){
  *{
    animation:none!important;
    transition:none!important;
  }
}

/* =========================
   SAFE AREA (iOS)
   ========================= */

.ebd-opHero{
  padding-left:env(safe-area-inset-left);
  padding-right:env(safe-area-inset-right);
}
