@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ========================================
   RESET CSS
   ======================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
li,
td {
  list-style: none;
}

a {
  color: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type="submit"] {
  -webkit-appearance: none;
}

img {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ========================================
   BODY SCOPE - .page-vibecode
   ======================================== */
.page-vibecode {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  color: #333;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.page-vibecode *,
.page-vibecode *::before,
.page-vibecode *::after {
  box-sizing: border-box;
}
.page-vibecode img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-vibecode a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.page-vibecode a:hover {
  opacity: 0.8;
}
.page-vibecode button {
  cursor: pointer;
  font-family: inherit;
}
.page-vibecode ul,
.page-vibecode ol,
.page-vibecode dl,
.page-vibecode dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-vibecode h1,
.page-vibecode h2,
.page-vibecode h3,
.page-vibecode h4,
.page-vibecode h5,
.page-vibecode h6,
.page-vibecode p {
  margin: 0;
}

/* ---- Responsive utilities ---- */
.page-vibecode .sp-only {
  display: none !important;
}
@media (max-width: 767.98px) {
  .page-vibecode .sp-only {
    display: inline !important;
  }
}
.page-vibecode .sp-br {
  display: none;
}
@media (max-width: 767.98px) {
  .page-vibecode .sp-br {
    display: block;
  }
}
.page-vibecode .pc-only {
  display: inline;
}
@media (max-width: 767.98px) {
  .page-vibecode .pc-only {
    display: none !important;
  }
}
.page-vibecode .text-center {
  text-align: center;
}

/* ---- Inner container ---- */
.vc-inner {
  max-width: calc(1120px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.js-inview-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-inview-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SECTION HEADING (Aidemy "/ Label" style)
   ======================================== */
.page-vibecode .vc-section-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #1a56db;
}
@media (max-width: 767.98px) {
  .page-vibecode .vc-section-label {
    font-size: 13px;
  }
}
.page-vibecode .vc-section-label--light {
  color: rgba(255, 255, 255, 0.7);
}
.page-vibecode .vc-section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
  color: #333;
}
@media (max-width: 767.98px) {
  .page-vibecode .vc-section-title {
    font-size: 22px;
  }
}
.page-vibecode .vc-section-title--light {
  color: #fff;
}

/* ========================================
   UNDERLINE UTILITY
   ======================================== */
.vc-underline {
  background-image: linear-gradient(transparent 60%, rgba(230, 81, 0, 0.2) 60%);
}

/* ========================================
   PILL BUTTONS
   ======================================== */
.page-vibecode .vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  color: #fff;
  border: 2px solid transparent;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 767.98px) {
  .page-vibecode .vc-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}
.page-vibecode .vc-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: transform 0.3s;
}
.page-vibecode .vc-btn:hover {
  filter: brightness(1.12);
  opacity: 1;
}
.page-vibecode .vc-btn:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}
.page-vibecode .vc-btn--accent {
  background: linear-gradient(135deg, #e65100, #db2777);
  border-color: transparent;
}
.page-vibecode .vc-btn--accent:hover {
  filter: brightness(1.12);
  opacity: 1;
}
.page-vibecode .vc-btn--outline {
  background: linear-gradient(135deg, #e65100, #db2777);
  color: #fff;
  border-color: transparent;
}
.page-vibecode .vc-btn--outline:hover {
  filter: brightness(1.12);
  opacity: 1;
}
.page-vibecode .vc-btn--white {
  background: #fff;
  color: #1a56db;
  border-color: #fff;
}
.page-vibecode .vc-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  opacity: 1;
}
.page-vibecode .vc-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .page-vibecode .vc-btn-group {
    flex-direction: column;
    gap: 12px;
  }
}
.page-vibecode .vc-btn-item {
  text-align: center;
}
.page-vibecode .vc-btn-label {
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .page-vibecode .vc-btn-label {
    font-size: 12px;
  }
}

/* ---- CTA Pill (Aidemy hero CTA style) ---- */
.vc-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
@media (max-width: 767.98px) {
  .vc-cta-pill {
    padding: 14px 28px;
    font-size: 14px;
  }
}
.vc-cta-pill--accent {
  background: linear-gradient(135deg, #e65100, #db2777);
  color: #fff;
}
.vc-cta-pill--accent:hover {
  filter: brightness(1.12);
}
.vc-cta-pill__badge {
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.vc-cta-pill__text {
  letter-spacing: 0.05em;
}

/* Body lock when nav is open */
body.is-nav-open {
  overflow: hidden;
}
/* Remove backdrop-filter so child fixed nav isn't constrained to header */
body.is-nav-open .vc-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #fff;
}

/* ========================================
   1. HEADER
   Frosted glass + Aidemy badge CTA
   ======================================== */
.vc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.vc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(1120px + 40px);
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}
@media (max-width: 767.98px) {
  .vc-header__inner {
    height: 60px;
  }
}
.vc-header__logo {
  flex-shrink: 0;
}
.vc-header__logo a {
  display: flex;
  align-items: center;
}
.vc-header__logo img {
  height: 28px;
  width: auto;
}
@media (max-width: 767.98px) {
  .vc-header__logo img {
    height: 22px;
  }
}
.vc-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .vc-header__nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 99;
  }
  .vc-header__nav.is-open {
    display: flex;
  }
}
.vc-header__nav-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .vc-header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.vc-header__nav-list li a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  white-space: nowrap;
  color: #333;
  transition: color 0.3s;
}
.vc-header__nav-list li a:hover {
  color: #1a56db;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .vc-header__nav-list li {
    border-bottom: 1px solid #eee;
  }
  .vc-header__nav-list li a {
    font-size: 16px;
    padding: 16px 0;
  }
}
.vc-header__nav-btn {
  margin-left: 16px;
}
@media (max-width: 767.98px) {
  .vc-header__nav-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
/* Aidemy-style badge CTA button */
.vc-header__badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}
.vc-header__badge-btn:hover {
  filter: brightness(1.12);
  opacity: 1;
}
@media (max-width: 767.98px) {
  .vc-header__badge-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}
.vc-header__badge {
  background: #fff;
  color: #1a56db;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
/* Hamburger */
.vc-header__hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 767.98px) {
  .vc-header__hamburger {
    display: block;
  }
}
.vc-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.vc-header__hamburger span:nth-child(1) {
  top: 0;
}
.vc-header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.vc-header__hamburger span:nth-child(3) {
  bottom: 0;
}
.vc-header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.vc-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.vc-header__hamburger.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   2. HERO - Full-bleed overlay (Aidemy style)
   ======================================== */
.vc-hero {
  position: relative;
  padding-top: 70px;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .vc-hero {
    padding-top: 60px;
    min-height: 520px;
  }
}
.vc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgb(2 21 43 / 88%) 0%, rgb(48 69 116 / 48%) 100%)
}
.vc-hero__content {
  position: relative;
  z-index: 1;
  max-width: calc(1120px + 40px);
  padding: 60px 20px;
  text-align: left;
  color: #fff;
}
@media (max-width: 767.98px) {
  .vc-hero__content {
    padding: 40px 20px;
  }
}
.vc-hero__grant-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(26, 86, 219, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(147, 197, 253, 0.5);
  border-radius: 12px;
  padding: 10px 28px;
  margin-bottom: 24px;
}
.vc-hero__grant-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}
.vc-hero__grant-off {
  display: flex;
  align-items: baseline;
}
.vc-hero__grant-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 46px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: #93c5fd;
  text-shadow: 0 2px 16px rgba(147, 197, 253, 0.5);
}
.vc-hero__grant-pct {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #93c5fd;
}
.vc-hero__grant-off-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: #93c5fd;
  margin-left: 4px;
  text-shadow: 0 2px 16px rgba(147, 197, 253, 0.5);
}
@media (max-width: 767.98px) {
  .vc-hero__grant-badge {
    gap: 8px;
    padding: 0 18px;
    margin-bottom: 16px;
  }
  .vc-hero__grant-label {
    font-size: 12px;
  }
  .vc-hero__grant-num {
    font-size: 32px;
  }
  .vc-hero__grant-pct {
    font-size: 22px;
  }
  .vc-hero__grant-off-text {
    font-size: 26px;
  }
}
.vc-hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .vc-hero__title {
    font-size: 26px;
  }
}
.vc-hero__title-accent {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-hero__subtitle {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
  opacity: 0.9;
}
@media (max-width: 767.98px) {
  .vc-hero__subtitle {
    font-size: 13px;
    margin-top: 16px;
  }
}
/* Hero number badges */
.vc-hero__numbers {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .vc-hero__numbers {
    gap: 10px;
    margin-top: 24px;
  }
}
.vc-hero__number-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 767.98px) {
  .vc-hero__number-item {
    padding: 12px 16px;
    min-width: 95px;
  }
}
.vc-hero__number-val {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.vc-hero__number-val small {
  font-size: 0.6em;
}
@media (max-width: 767.98px) {
  .vc-hero__number-val {
    font-size: 24px;
  }
}
.vc-hero__number-label {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.8;
}
/* Hero CTA */
.vc-hero__cta {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .vc-hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
  }
  .vc-hero__cta .vc-cta-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   2.5 SHOWCASE - Systems you can build
   ======================================== */
.vc-showcase {
  padding: 60px 0 50px;
  background: #fff;
}
@media (max-width: 767.98px) {
  .vc-showcase {
    padding: 40px 0 36px;
  }
}
.vc-showcase__heading {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .vc-showcase__heading {
    font-size: 22px;
  }
}
.vc-showcase__sub {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .vc-showcase__sub {
    font-size: 13px;
  }
}
.vc-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 1023.98px) {
  .vc-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .vc-showcase__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.vc-showcase__card {
  background: #f8f9fc;
  border: 1px solid #e8ecf3;
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vc-showcase__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.vc-showcase__card-icon svg {
  width: 36px;
  height: 36px;
  stroke: url(#showcase-icon-grad);
}
.vc-showcase__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .vc-showcase__card-icon{
    margin-bottom: 3px;
  }
  .vc-showcase__card-title {
    font-size: 17px;
    margin-bottom: 5px!important;
  }
}
.vc-showcase__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 14px;
}
.vc-showcase__card-footer {
  border-top: 1px solid #e0e4eb;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.vc-showcase__card-cost {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vc-showcase__card-cost-label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: #c7243a;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.vc-showcase__card-cost-val {
  font-size: 13px;
  font-weight: 700;
  color: #c7243a;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: -0.02em;
}
.vc-showcase__card-time {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.vc-showcase__card-time-label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: #1a56db;
  padding: 2px 6px;
  border-radius: 4px;
}
.vc-showcase__card-time-val {
  font-size: 18px;
  font-weight: 800;
  color: #1a56db;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  line-height: 1;
}
.vc-showcase__note {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .vc-showcase__note {
    text-align: center;
  }
}

/* ========================================
   3. GRANT BANNER
   ======================================== */
.vc-grant-banner {
  padding: 48px 0;
  background: #f8fafc;
}
.vc-grant-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 52px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26, 86, 219, 0.08), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(26, 86, 219, 0.1);
}
.vc-grant-banner__logo {
  flex-shrink: 0;
}
.vc-grant-banner__logo img {
  display: block;
  max-width: 210px;
  height: auto;
}
.vc-grant-banner__divider {
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
  flex-shrink: 0;
}
.vc-grant-banner__text {
  flex-shrink: 0;
}
.vc-grant-banner__label {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  position: relative;
  top: 10px;
}
.vc-grant-banner__headline {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  top: -14px;
}
.vc-grant-banner__big {
  color: #1a56db;
  font-size: 34px;
  font-weight: 800;
}
.vc-grant-banner__big strong {
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-grant-banner__big .vc-grant-banner__unit {
  font-size: 40px;
}
.vc-grant-banner__action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-grant-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1a56db, #1e40af);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}
.vc-grant-banner__btn:hover {
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
  filter: brightness(1.1);
}
.vc-grant-banner__btn--accent {
  background: linear-gradient(135deg, #e65100, #db2777);
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.3);
}
.vc-grant-banner__btn--accent:hover {
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}
@media (max-width: 768px) {
  .vc-grant-banner {
    padding: 32px 0;
  }
  .vc-grant-banner__inner {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
  }
  .vc-grant-banner__logo img {
    max-width: 140px;
    margin: 0 auto;
  }
  .vc-grant-banner__divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  }
  .vc-grant-banner__label {
    font-size: 16px;
    top: 0;
  }
  .vc-grant-banner__headline {
    font-size: 20px;
    white-space: normal;
    top: 0;
    line-height: 1.4;
  }
  .vc-grant-banner__big {
    font-size: 24px;
  }
  .vc-grant-banner__big strong {
    font-size: 44px;
  }
  .vc-grant-banner__big .vc-grant-banner__unit {
    font-size: 28px;
  }
  .vc-grant-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   4. FIXED SIDE CTA
   ======================================== */
.vc-fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .vc-fixed-btn {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }
}
.vc-fixed-btn__doc {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 10px;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  transition: 0.3s;
  box-shadow: -2px 2px 12px rgba(26, 86, 219, 0.25);
}
.vc-fixed-btn__doc::after {
  display: none;
}
.vc-fixed-btn__doc:hover {
  filter: brightness(1.12);
  opacity: 1;
}
.vc-fixed-btn__doc .pc-text {
  display: none;
}
.vc-fixed-btn__doc .sp-text {
  display: inline;
}
@media (min-width: 768px) {
  .vc-fixed-btn__doc .pc-text {
    display: inline;
  }
  .vc-fixed-btn__doc .sp-text {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .vc-fixed-btn__doc {
    writing-mode: horizontal-tb;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 0;
    box-shadow: none;
  }
  .vc-fixed-btn__doc::after {
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
  }
  .vc-fixed-btn__doc:hover {
    padding-right: 24px;
  }
}
.vc-fixed-btn__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e65100, #db2777);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 10px;
  border: 2px solid transparent;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  transition: 0.3s;
  box-shadow: -2px 2px 12px rgba(230, 81, 0, 0.25);
}
.vc-fixed-btn__contact:hover {
  filter: brightness(1.12);
  color: #fff;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .vc-fixed-btn__contact {
    writing-mode: horizontal-tb;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 0;
    box-shadow: none;
  }
  .vc-fixed-btn__contact:hover {
    padding-right: 24px;
  }
  /* Hide on scroll down (mobile only) */
  .vc-fixed-btn--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .vc-fixed-btn {
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
}

/* ========================================
   5. CHALLENGE (Aidemy icon-card grid)
   ======================================== */
.vc-challenge {
  padding: 80px 0;
  background: #f8f9fc;
}
@media (max-width: 767.98px) {
  .vc-challenge {
    padding: 50px 0;
  }
}
.vc-challenge__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .vc-challenge__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.vc-challenge__card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 20px rgba(26, 86, 219, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc-challenge__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.12);
}
@media (max-width: 767.98px) {
  .vc-challenge__card {
    padding: 20px 18px;
    gap: 16px;
  }
}
.vc-challenge__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #eef3fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.vc-challenge__icon img {
  width: 100%;
}
.vc-challenge__text {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 767.98px) {
  .vc-challenge__text {
    font-size: 14px;
  }
}
.vc-challenge__text strong {
  color: #c7243a;
}

/* ========================================
   6. TRANSFORM (NTT before/after comparison)
   ======================================== */
.vc-transform {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 767.98px) {
  .vc-transform {
    padding: 50px 0;
  }
}
.vc-transform__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .vc-transform__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.vc-transform__item {
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .vc-transform__item {
    padding: 28px 20px;
  }
}
.vc-transform__item--before {
  background: #f8f9fc;
  border: 2px solid #ddd;
}
.vc-transform__item--after {
  background: #eef3fb;
  border: 2px solid #1a56db;
}
.vc-transform__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 5px;
}
.vc-transform__icon img {
  width: 100%;
}
.vc-transform__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .vc-transform__label {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.vc-transform__item--before .vc-transform__label {
  color: #888;
}
.vc-transform__item--after .vc-transform__label {
  color: #1a56db;
}
.vc-transform__list {
  text-align: left;
  margin: 0 auto;
}
.vc-transform__list li {
  font-size: 17px;
  line-height: 1.8;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
@media (max-width: 767.98px) {
  .vc-transform__list li {
    font-size: 14px;
  }
}
.vc-transform__item--before .vc-transform__list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #c7243a;
  font-weight: 700;
}
.vc-transform__item--after .vc-transform__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 700;
}
.vc-transform__note {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 767.98px) {
  .vc-transform__note {
    margin-top: 30px;
    font-size: 15px;
  }
}
.vc-transform__note strong {
  color: #1a56db;
  font-weight: 700;
}

/* ========================================
   7. CTA BAND (Aidemy gradient + image style)
   ======================================== */
.vc-cta-band {
  background: linear-gradient(135deg, #0d2137 0%, #1a56db 100%);
}
.vc-cta-band__inner {
  max-width: calc(1120px + 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 767.98px) {
  .vc-cta-band__inner {
    grid-template-columns: 1fr;
  }
}
.vc-cta-band__img {
  max-width: 360px;
}
@media (max-width: 767.98px) {
  .vc-cta-band__img {
    max-width: 100%;
  }
}
.vc-cta-band__img img {
  width: 100%;
  display: block;
}
.vc-cta-band__content {
  padding: 50px 40px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .vc-cta-band__content {
    padding: 30px 20px 40px;
    text-align: center;
  }
}
.vc-cta-band__pre {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .vc-cta-band__pre {
    font-size: 13px;
  }
}
.vc-cta-band__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .vc-cta-band__title {
    font-size: 22px;
  }
}
.vc-cta-band__text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 16px;
  opacity: 0.85;
}
@media (max-width: 767.98px) {
  .vc-cta-band__text {
    font-size: 14px;
  }
}
.vc-cta-band__btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .vc-cta-band__btns {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }
}

/* ========================================
   8. FEATURES (Aidemy alternating article blocks)
   ======================================== */
.vc-features {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}
@media (max-width: 767.98px) {
  .vc-features {
    padding: 50px 0;
  }
}
.vc-features__desc {
  font-size: 16px;
  margin-top: 16px;
  color: #666;
  letter-spacing: 0.03em;
}
@media (max-width: 767.98px) {
  .vc-features__desc {
    font-size: 14px;
  }
}
.vc-features__articles {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767.98px) {
  .vc-features__articles {
    margin-top: 40px;
    gap: 40px;
  }
}
.vc-features__article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .vc-features__article {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.vc-features__article--reverse {
  direction: rtl;
}
.vc-features__article--reverse > * {
  direction: ltr;
}
@media (max-width: 767.98px) {
  .vc-features__article--reverse {
    direction: ltr;
  }
}
.vc-features__article-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.vc-features__article-num {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.2;
}
@media (max-width: 767.98px) {
  .vc-features__article-num {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
.vc-features__article-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px!important;
  color: #333;
}
@media (max-width: 767.98px) {
  .vc-features__article-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.vc-features__article-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}
@media (max-width: 767.98px) {
  .vc-features__article-text {
    font-size: 14px;
  }
}

/* ========================================
   9. PROGRAM
   ======================================== */
.vc-program {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 767.98px) {
  .vc-program {
    padding: 50px 0;
  }
}
.vc-program__block {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}
.vc-program__block-heading {
  background: linear-gradient(135deg, #0d2137, #1a56db);
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  padding: 14px 16px;
}
@media (max-width: 767.98px) {
  .vc-program__block-heading {
    font-size: 18px;
    padding: 12px 16px;
  }
}
.vc-program__block-body {
  background: #f5f7fa;
  text-align: center;
  padding: 32px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .vc-program__block-body {
    font-size: 16px;
    padding: 20px 16px;
  }
}
.vc-program__steps-label {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0!important;
}
@media (max-width: 767.98px) {
  .vc-program__steps-label {
    font-size: 18px;
    margin: 30px 0 20px;
  }
}
.vc-program__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .vc-program__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.vc-program__step {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 0 20px rgba(26, 86, 219, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc-program__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.12);
}
.vc-program__step .step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
}
.vc-program__step .step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .vc-program__step .step-title {
    font-size: 17px;
    min-height: auto;
  }
}
.vc-program__step .step-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.6;
}
.vc-program__step .step-item img {
  width: 28px;
  flex-shrink: 0;
}
.vc-program__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .vc-program__meta {
    grid-template-columns: 1fr;
  }
}
.vc-program__meta-item {
  border-radius: 12px;
  overflow: hidden;
}
.vc-program__meta-item .meta-heading {
  background: linear-gradient(135deg, #0d2137, #1a56db);
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  padding: 12px 16px;
}
@media (max-width: 767.98px) {
  .vc-program__meta-item .meta-heading {
    font-size: 18px;
  }
}
.vc-program__meta-item .meta-body {
  background: #f5f7fa;
  text-align: center;
  padding: 28px 16px;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .vc-program__meta-item .meta-body {
    font-size: 18px;
  }
}
.vc-program__meta-item .meta-body .big {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  color: #1a56db;
}
@media (max-width: 767.98px) {
  .vc-program__meta-item .meta-body .big {
    font-size: 26px;
  }
}

/* ========================================
   10. OUTCOMES (NTT effect 3-column cards)
   ======================================== */
.vc-outcomes {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2137 0%, #1a56db 100%);
}
@media (max-width: 767.98px) {
  .vc-outcomes {
    padding: 50px 0;
  }
}
.vc-effect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .vc-effect {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.vc-effect__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc-effect__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  .vc-effect__item {
    padding: 24px 20px;
  }
}
.vc-effect__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.vc-effect__icon img {
  width: 100%;
}
.vc-effect__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px!important;
  color: #1a56db;
}
@media (max-width: 767.98px) {
  .vc-effect__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.vc-effect__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #000;
}
.vc-effect__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a56db;
  font-weight: 700;
  font-size: 16px;
}

/* ========================================
   11. CTA MODULE
   ======================================== */
.vc-cta-module {
  padding: 60px 0;
  background: #f5f7fa;
}
@media (max-width: 767.98px) {
  .vc-cta-module {
    padding: 40px 0;
  }
}

/* ========================================
   12. GRANT / SUBSIDY
   ======================================== */
.vc-grant {
  background: #fff;
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .vc-grant {
    padding: 50px 0;
  }
}
.vc-grant__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .vc-grant__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.vc-grant__text .lead {
  font-size: 20px;
  margin-bottom: 8px;
  color: #555;
}
@media (max-width: 767.98px) {
  .vc-grant__text .lead {
    font-size: 16px;
  }
}
.vc-grant__text h3 {
  color: #1a56db;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .vc-grant__text h3 {
    font-size: 22px;
  }
}
.vc-grant__text h3 .max-label {
  font-size: 0.7em;
  color: #333;
}
.vc-grant__text h3 .grad-text {
  background: linear-gradient(135deg, #1a56db, #1a56db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-grant__text h3 .big {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
}
.vc-grant__text h3 .big small {
  font-size: 0.75em;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .vc-grant__text h3 .big {
    font-size: 36px;
  }
}
.vc-grant__text h3 .normal {
  color: #333;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .vc-grant__text h3 .normal {
    font-size: 22px;
  }
}
.vc-grant__text p {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .vc-grant__text p {
    font-size: 14px;
  }
}
.vc-grant__img img {
  width: 100%;
  border-radius: 12px;
}
.vc-grant__note {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}
.vc-grant__note a {
  color: #999;
  text-decoration: underline;
}

/* ========================================
   13. FLOW
   ======================================== */
.vc-flow {
  padding: 80px 0;
  background: #f8f9fc;
}
@media (max-width: 767.98px) {
  .vc-flow {
    padding: 50px 0;
  }
}
.vc-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .vc-flow__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.vc-flow__step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc-flow__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.1);
}
/* Arrow between steps */
@media (min-width: 768px) {
  .vc-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #1a56db;
    z-index: 1;
  }
}
@media (max-width: 767.98px) {
  .vc-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1a56db;
    z-index: 1;
  }
}
.vc-flow__num {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
}
.vc-flow__step-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 12px;
}
@media (max-width: 767.98px) {
  .vc-flow__step-title {
    font-size: 16px;
  }
}
.vc-flow__step-img {
  margin: 8px auto;
  max-width: 140px;
}
.vc-flow__step-txt {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}
@media (max-width: 767.98px) {
  .vc-flow__step-txt {
    font-size: 13px;
  }
}

/* ========================================
   14. CONTACT
   ======================================== */
.vc-contact {
  padding: 80px 0 0;
  background: #fff;
}
@media (max-width: 767.98px) {
  .vc-contact {
    padding: 50px 0 0;
  }
}
.vc-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767.98px) {
  .vc-contact__grid {
    grid-template-columns: 1fr;
  }
}
.vc-contact__left {
  padding: 40px 32px;
  background: #fff;
}
@media (max-width: 767.98px) {
  .vc-contact__left {
    padding: 24px 20px;
  }
}
.vc-contact__left h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}
@media (max-width: 767.98px) {
  .vc-contact__left h3 {
    font-size: 18px;
  }
}
.vc-contact__left .carousel {
  margin-bottom: 16px;
}
.vc-contact__left .carousel img {
  width: 100%;
  border-radius: 8px;
}
.vc-contact__left .doc-info {
  margin-bottom: 16px;
}
.vc-contact__left .doc-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.vc-contact__left .doc-info ul {
  padding-left: 20px;
}
.vc-contact__left .doc-info ul li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.6;
}
.vc-contact__left .doc-note {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.vc-contact__right {
  background: #eef3fb;
  padding: 40px 32px;
}
@media (max-width: 767.98px) {
  .vc-contact__right {
    padding: 24px 20px;
  }
}
/* Form */
.vc-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
}
@media (max-width: 767.98px) {
  .vc-form {
    padding: 24px 20px;
  }
}
.vc-form__group {
  margin-bottom: 20px;
}
.vc-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}
.vc-form__required {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #e65100;
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.vc-form__input,
.vc-form__select,
.vc-form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  color: #333;
  background: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.vc-form__input:focus,
.vc-form__select:focus,
.vc-form__textarea:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
  background: #fff;
}
.vc-form__input::placeholder,
.vc-form__textarea::placeholder {
  color: #9ca3af;
}
.vc-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.vc-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.vc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vc-form__row .vc-form__group {
  margin-bottom: 20px;
}
.vc-form__privacy {
  margin-bottom: 24px;
  text-align: center;
}
.vc-form__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
}
.vc-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1a56db;
  cursor: pointer;
}
.vc-form__checkbox-label a {
  color: #1a56db;
  text-decoration: underline;
}
.vc-form__submit {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a56db, #1e40af);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}
.vc-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}
.vc-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.vc-form__message {
  margin-top: 16px;
  padding: 0;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.vc-form__message:empty {
  display: none;
}
.vc-form__message--success {
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.vc-form__message--error {
  padding: 14px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ========================================
   15. FAQ
   ======================================== */
.vc-faq {
  padding: 80px 0;
  background: #f8f9fc;
}
@media (max-width: 767.98px) {
  .vc-faq {
    padding: 50px 0;
  }
}
.vc-faq__list {
  max-width: 800px;
  margin: 40px auto 0;
}
.vc-faq__item {
  border-bottom: 1px solid #ddd;
}
.vc-faq__item:first-child {
  border-top: 1px solid #ddd;
}
.vc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  color: #333;
  font-family: inherit;
}
@media (max-width: 767.98px) {
  .vc-faq__question {
    font-size: 15px;
    padding: 16px 0;
  }
}
.vc-faq__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1a56db;
  border-radius: 50%;
  color: #1a56db;
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s;
}
.vc-faq__question[aria-expanded="true"]::after {
  content: "\2212";
  background: #1a56db;
  color: #fff;
}
.vc-faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 767.98px) {
  .vc-faq__answer {
    font-size: 14px;
  }
}
.vc-faq__answer.is-open {
  display: block;
}
.vc-faq__answer p + p {
  margin-top: 16px;
}

/* ========================================
   16. FOOTER
   ======================================== */
.vc-footer {
  background: #f5f7fa;
  padding: 16px 0;
}

@media (max-width: 767.98px) {
  .vc-footer {
    padding: 20px 0;
  }
}
.vc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .vc-footer__inner {
    flex-direction: column;
    gap: 12px;
  }
}
.vc-footer__logo img {
  height: 20px;
  width: auto;
}
.vc-footer__copyright {
  font-size: 12px;
  color: #999;
}
