@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

.kh-ac-widget,
.kh-ac-widget * {
  box-sizing: border-box;
}

.kh-ac-widget {
  --yellow: #F5C518;
  --yellow-dark: #D4A800;
  --blue: #2D87C8;
  --blue-dark: #1A6BA8;
  --blue-deep: #0F4C7A;
  --black: #111111;
  --gray-100: #F7F8FA;
  --gray-200: #EAECEF;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #374151;
  --white: #FFFFFF;
  --font: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --container-max: 1160px;
  --section-space: 72px;

  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;

  /* Force full-bleed width even inside boxed Elementor/theme containers */
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Elementor compatibility: remove inner wrapper spacing and clipping */
[class*="elementor-widget-kh-ac-"] > .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

[class*="elementor-widget-kh-ac-"] {
  overflow: visible !important;
}

.kh-ac-widget .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.kh-ac-widget .section { padding: var(--section-space) 0; }
.kh-ac-widget .section--gray { background: var(--gray-100); }
.kh-ac-widget .section--blue { background: var(--blue-deep); color: var(--white); }

.kh-ac-widget h1,
.kh-ac-widget h2 { font-family: var(--font-cond); margin: 0; }
.kh-ac-widget h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
.kh-ac-widget h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; }
.kh-ac-widget h3 { font-size: 20px; font-weight: 700; margin: 0; }
.kh-ac-widget p { margin: 0; }

.kh-ac-widget .badge {
  display: inline-block;
  background: var(--yellow);
  color: #5A3D00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.kh-ac-widget .section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.kh-ac-widget .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}
.kh-ac-widget .btn:hover { transform: translateY(-2px); }
.kh-ac-widget .btn--yellow { background: var(--yellow); color: #4A2E00; }
.kh-ac-widget .btn--yellow:hover { background: var(--yellow-dark); box-shadow: 0 6px 20px rgba(245,197,24,0.35); }
.kh-ac-widget .btn--blue { background: var(--blue); color: var(--white); }
.kh-ac-widget .btn--blue:hover { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(45,135,200,0.35); }
.kh-ac-widget .btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.kh-ac-widget .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.kh-ac-widget .btn--dark { background: var(--black); color: var(--white); }
.kh-ac-widget .btn--dark:hover { background: #333; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

.kh-ac-widget .hero {
  background: linear-gradient(135deg, #0a2f4d 0%, var(--blue-deep) 40%, #1A6BA8 100%);
  padding: 80px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.kh-ac-widget .hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
}
.kh-ac-widget .hero::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245,197,24,0.05);
}
.kh-ac-widget .hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.kh-ac-widget .hero-text { position: relative; z-index: 1; }
.kh-ac-widget .hero h1 { color: var(--white); margin-bottom: 20px; }
.kh-ac-widget .hero h1 em { color: var(--yellow); font-style: normal; }
.kh-ac-widget .hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.kh-ac-widget .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.kh-ac-widget .hero-trust { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.kh-ac-widget .trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.kh-ac-widget .trust-icon { width: 32px; height: 32px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kh-ac-widget .trust-icon svg { width: 16px; height: 16px; color: #4A2E00; }

.kh-ac-widget .hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--black);
  min-width: 240px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.kh-ac-widget .hero-card-title { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 20px; }
.kh-ac-widget .hero-card .rating { font-size: 32px; font-weight: 900; font-family: var(--font-cond); color: var(--blue); }
.kh-ac-widget .hero-card .stars { color: var(--yellow); font-size: 20px; margin: 4px 0 8px; }
.kh-ac-widget .hero-card small { font-size: 13px; color: var(--gray-600); }
.kh-ac-widget .divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }
.kh-ac-widget .hero-card .avail { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #166534; }
.kh-ac-widget .dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: khPulse 1.8s infinite;
}
@keyframes khPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.kh-ac-widget .intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.kh-ac-widget .intro-text h2 { margin-bottom: 16px; }
.kh-ac-widget .intro-text p { color: var(--gray-800); margin-bottom: 16px; line-height: 1.75; }
.kh-ac-widget .intro-text p strong { color: var(--black); }
.kh-ac-widget .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.kh-ac-widget .stat-box { background: var(--gray-100); border-left: 4px solid var(--yellow); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.kh-ac-widget .stat-box .num { font-family: var(--font-cond); font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; }
.kh-ac-widget .stat-box .label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

.kh-ac-widget .checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.kh-ac-widget .checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-800); line-height: 1.5; }
.kh-ac-widget .check-icon { width: 24px; height: 24px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.kh-ac-widget .check-icon svg { width: 12px; height: 12px; stroke: white; fill: none; }

.kh-ac-widget .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kh-ac-widget .step-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.kh-ac-widget .step-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.kh-ac-widget .step-num { width: 40px; height: 40px; background: var(--yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-cond); font-size: 20px; font-weight: 900; color: #4A2E00; margin-bottom: 16px; }
.kh-ac-widget .step-card h3 { font-size: 17px; margin-bottom: 8px; }
.kh-ac-widget .step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.kh-ac-widget .reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kh-ac-widget .reason-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.kh-ac-widget .reason-icon { width: 52px; height: 52px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kh-ac-widget .reason-icon svg { width: 26px; height: 26px; color: #4A2E00; }
.kh-ac-widget .reason-card h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.kh-ac-widget .reason-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; }

.kh-ac-widget .process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.kh-ac-widget .process-row::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.kh-ac-widget .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.kh-ac-widget .process-num {
  width: 64px;
  height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.kh-ac-widget .process-step.active .process-num { background: var(--yellow); color: #4A2E00; box-shadow: 0 0 0 2px var(--yellow); }
.kh-ac-widget .process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.kh-ac-widget .process-step p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.kh-ac-widget .areas-intro { max-width: 640px; margin: 0 auto 40px; text-align: center; color: var(--gray-800); }
.kh-ac-widget .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.kh-ac-widget .area-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 20px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.kh-ac-widget .area-card:hover { border-color: var(--blue); background: #EBF5FF; }
.kh-ac-widget .area-icon { font-size: 28px; margin-bottom: 10px; }
.kh-ac-widget .area-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.kh-ac-widget .area-card p { font-size: 13px; color: var(--gray-600); }

.kh-ac-widget .cta-banner { background: var(--yellow); padding: 60px 0; }
.kh-ac-widget .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.kh-ac-widget .cta-text h2 { font-family: var(--font-cond); font-size: 36px; font-weight: 900; color: #2C1A00; }
.kh-ac-widget .cta-text p { font-size: 17px; color: #5A3D00; margin-top: 6px; }
.kh-ac-widget .cta-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.kh-ac-widget .faq-grid { max-width: 800px; margin: 0 auto; }
.kh-ac-widget .faq-item { border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.kh-ac-widget .faq-item:first-child { border-top: 1px solid var(--gray-200); }
.kh-ac-widget .faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; cursor: pointer; }
.kh-ac-widget .faq-q h3 { font-size: 17px; font-weight: 700; color: var(--black); flex: 1; }
.kh-ac-widget .faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.kh-ac-widget .faq-item.open .faq-toggle { background: var(--yellow); color: #4A2E00; transform: rotate(45deg); }
.kh-ac-widget .faq-a { display: none; padding-top: 14px; font-size: 15px; color: var(--gray-800); line-height: 1.75; }
.kh-ac-widget .faq-item.open .faq-a { display: block; }

@media (max-width: 900px) {
  .kh-ac-widget .hero-inner { grid-template-columns: 1fr; }
  .kh-ac-widget .hero-card { display: none; }
  .kh-ac-widget .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .kh-ac-widget .steps-grid { grid-template-columns: 1fr 1fr; }
  .kh-ac-widget .reasons-grid { grid-template-columns: 1fr; }
  .kh-ac-widget .process-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .kh-ac-widget .process-row::after { display: none; }
  .kh-ac-widget .areas-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .kh-ac-widget .container { padding: 0 18px; }
  .kh-ac-widget .steps-grid,
  .kh-ac-widget .areas-grid,
  .kh-ac-widget .process-row,
  .kh-ac-widget .stat-row { grid-template-columns: 1fr; }
  .kh-ac-widget .cta-inner,
  .kh-ac-widget .hero-btns { flex-direction: column; text-align: center; }
  .kh-ac-widget .hero-btns .btn,
  .kh-ac-widget .cta-actions .btn { width: 100%; justify-content: center; }
  .kh-ac-widget .hero-trust { gap: 14px; }
}
