
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

.axis-page { font-family: 'Inter', sans-serif; }

/* ═══════════════════════════════════════
   1. HERO — Deep Plum Purple (DARK)
═══════════════════════════════════════ */
.axis-hero {
    background: linear-gradient(135deg, #f3eeff 0%, #ede5ff 40%, #e0d4ff 70%, #f0eaff 100%);
    border-bottom: 3px solid #b197fc;
    padding: 70px 20px 58px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #b197fc;
}
.axis-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 7%  62%, rgba(139,92,246,0.10) 0%, transparent 45%),
        radial-gradient(circle at 88% 16%, rgba(167,139,250,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 95%, rgba(247,168,0,0.07)   0%, transparent 35%);
    pointer-events: none;
}
.axis-hero::after {
    content: '';
    position: absolute;
    width: 520px; height: 520px; border-radius: 50%;
    border: 60px solid rgba(139,92,246,0.08);
    top: -200px; right: -140px;
    pointer-events: none;
}
.axis-hero-ring2 {
    position: absolute;
    width: 290px; height: 290px; border-radius: 50%;
    border: 38px solid rgba(167,139,250,0.06);
    bottom: -115px; left: -60px;
    pointer-events: none;
}
.axis-hero-particles {
    position: absolute;
    width: 100%; height: 100%; top: 0; left: 0;
    background-image:
        radial-gradient(circle, rgba(139,92,246,0.10) 1px, transparent 1px),
        radial-gradient(circle, rgba(167,139,250,0.06) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
}

.axis-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.9fr;
    gap: 50px; align-items: center;
    position: relative; z-index: 2;
}

/* badge */
.axis-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.30);
    color: #5b21b6;
    font-size: 12px; font-weight: 800;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 7px 20px; border-radius: 50px;
    margin-bottom: 20px;
}
.axis-badge i { color: #7c3aed; font-size: 16px; }

/* h1 */
.axis-hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 4.2vw, 54px);
    font-weight: 800; color: #1a0030;
    margin: 0 0 10px; line-height: 1.12;
}
.hl-orange { color: #5b21b6; }
.hl-brown  { color: #7c3aed; font-size: 0.78em; }

.axis-hero-sub {
    font-size: 16px; color: #4a3a6a;
    line-height: 1.80; margin: 0 0 32px; max-width: 520px;
}

/* buttons */
.axis-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 32px; border-radius: 50px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border: none; color: #fff;
    font-size: 15px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 24px rgba(124,58,237,0.45);
    transition: all .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(124,58,237,0.58); color: #fff; text-decoration: none; }

.btn-outline-primary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 32px; border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(167,139,250,0.42); color: #c4b5fd;
    font-size: 15px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    transition: all .25s;
}
.btn-outline-primary:hover { background: rgba(139,92,246,0.18); border-color: #c4b5fd; color: #fff; text-decoration: none; }

/* hero card */
.axis-hero-card {
    background: #fff;
    border: 2px solid #c4b5fd;
    border-radius: 26px; padding: 30px;
    box-shadow: 0 8px 28px rgba(139,92,246,0.14);
    position: relative; overflow: hidden;
}
.axis-hero-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(139,92,246,0.06) 0%, transparent 55%);
    pointer-events: none;
}
.hc-title {
    color: #5b21b6;
    font-size: 10px; font-weight: 800; letter-spacing: 1.8px;
    text-transform: uppercase; margin-bottom: 18px;
}
.axis-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 18px;
}
.axis-stat {
    background: #f3eeff;
    border: 1px solid #c4b5fd;
    border-radius: 14px; padding: 18px 12px; text-align: center;
    transition: background .25s;
}
.axis-stat:hover { background: #ede5ff; }
.axis-stat-num { font-size: 22px; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.axis-stat-num.orange { color: #a78bfa; }
.axis-stat-num.brown  { color: #F7A800; }
.axis-stat-num.gold   { color: #29ABE2; }
.axis-stat-num.dark   { color: #1a0030; }
.axis-stat-lbl { font-size: 10px; color: #6a4a9a; font-weight: 600; }

.axis-hero-feature {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border: none;
    border-radius: 16px; padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(124,58,237,0.38);
}
.feature-text .feature-label { font-size: 14px; font-weight: 900; color: #fff; }
.feature-text .feature-sub   { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; }

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.axis-breadcrumb {
    background: #ede5ff;
    padding: 12px 20px;
    border-bottom: 1px solid #c4b5fd;
}
.axis-breadcrumb .bc-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #5b21b6; font-weight: 600;
}
.axis-breadcrumb a { color: #a78bfa; text-decoration: none; font-weight: 700; }
.axis-breadcrumb a:hover { color: #c4b5fd; text-decoration: underline; }
.axis-breadcrumb i { font-size: 10px; color: rgba(139,92,246,0.45); }
.axis-breadcrumb span:last-child { color: #1a0030; font-weight: 800; }

/* ═══════════════════════════════════════
   2. MAIN CONTENT SECTION
═══════════════════════════════════════ */
.axis-main-section {
    background: #fff;
    padding: 64px 20px;
}
.axis-content-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 44px; align-items: start;
}

/* left */
.axis-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f5f0ff;
    color: #5b21b6;
    font-size: 11px; font-weight: 800; letter-spacing: .8px;
    padding: 6px 16px; border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid #ddd6fe;
}
.axis-section-tag i { color: #7c3aed; }

.axis-content-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800; color: #1a0030; margin: 0 0 8px; line-height: 1.30;
}
.axis-content-left h2 span { color: #7c3aed; }

.axis-divider {
    width: 60px; height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, #7c3aed, #F7A800);
    margin-bottom: 22px;
}
.axis-content-left p {
    font-size: 15px; color: #4a3a6a; line-height: 1.80; margin-bottom: 18px;
}

/* services list */
.axis-services-list { list-style: none; margin: 24px 0; padding: 0; }
.axis-services-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed #e9d5ff;
    font-size: 15px; color: #1a0030;
}
.axis-services-list li:last-child { border-bottom: none; }
.axis-services-list li i { color: #7c3aed; font-size: 17px; margin-top: 2px; width: 22px; flex-shrink: 0; }
.axis-services-list li strong { color: #5b21b6; font-weight: 800; margin-right: 4px; }

/* benefits grid */
.axis-benefits-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; margin: 24px 0;
}
.axis-benefit-item {
    display: flex; align-items: center; gap: 10px;
    background: #f5f0ff;
    padding: 12px 14px; border-radius: 12px;
    border: 1px solid #ddd6fe;
    transition: all .25s;
}
.axis-benefit-item:hover { background: #ede9fe; transform: translateX(4px); border-color: #a78bfa; }
.axis-benefit-item i { color: #7c3aed; font-size: 15px; flex-shrink: 0; }
.axis-benefit-item span { font-size: 13px; font-weight: 700; color: #1a0030; }

/* contact note */
.axis-contact-note {
    background: #f5f0ff;
    border-left: 4px solid #7c3aed;
    padding: 18px 20px;
    border-radius: 12px; margin-top: 28px;
}
.axis-contact-note p { margin: 0; font-size: 15px; font-weight: 600; color: #1a0030; line-height: 1.65; }
.axis-contact-note i { color: #7c3aed; margin-right: 8px; }

/* services h3 */
.axis-content-left h3.services-title {
    font-size: 20px; font-weight: 800; color: #7c3aed;
    margin: 28px 0 14px;
}

/* ═══════════════════════════════════════
   FORM — right column
═══════════════════════════════════════ */
.axis-form-wrapper {
    background: #fff;
    border-radius: 26px; padding: 36px;
    border: 2px solid #ddd6fe;
    box-shadow: 0 8px 36px rgba(124,58,237,0.12);
    position: relative; overflow: hidden;
}
.axis-form-wrapper::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #F7A800);
}

.axis-form-header { text-align: center; margin-bottom: 28px; }
.axis-form-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: #1a0030; margin: 0 0 8px;
}
.axis-form-header h3 span { color: #7c3aed; }
.axis-form-header p { font-size: 13px; color: #7a6a9a; margin: 0; }

.axis-form { display: flex; flex-direction: column; gap: 16px; }

.axis-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.axis-form-group { position: relative; }
.axis-form-group > i {
    position: absolute; left: 15px; top: 50%;
    transform: translateY(-50%);
    color: #7c3aed; font-size: 15px; z-index: 1;
}
.axis-form-group textarea ~ i { top: 20px; transform: none; }

.axis-form-control {
    width: 100%; padding: 13px 14px 13px 42px;
    border: 2px solid #ddd6fe;
    border-radius: 14px;
    background: #faf8ff;
    color: #1a0030;
    font-size: 14px; font-family: inherit;
    transition: all .25s;
    box-sizing: border-box;
    appearance: none; -webkit-appearance: none;
}
.axis-form-control::placeholder { color: #b8a8d8; }
.axis-form-control:focus {
    outline: none;
    border-color: #7c3aed;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124,58,237,0.10);
}
.axis-form-control option { background: #fff; color: #1a0030; }
textarea.axis-form-control { min-height: 100px; resize: vertical; padding-top: 13px; }

/* select arrow */
select.axis-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #faf8ff;
    padding-right: 40px; cursor: pointer;
}

.axis-form-submit {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border: none; border-radius: 50px;
    color: #fff; font-size: 16px; font-weight: 800;
    font-family: inherit; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    box-shadow: 0 6px 22px rgba(124,58,237,0.38);
    transition: all .25s; margin-top: 6px;
}
.axis-form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,58,237,0.52); }

.axis-form-note {
    text-align: center; margin-top: 12px;
    font-size: 12px; color: #9ca3af;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
#msg { font-size: 14px; font-weight: 700; margin-top: 10px; text-align: center; color: #7c3aed; }
#gif_image { display: none; margin: 0 auto; width: 50px; }

/* ═══════════════════════════════════════
   3. CTA
═══════════════════════════════════════ */
.axis-cta {
    background: linear-gradient(135deg, #2d0050, #4a0080);
    padding: 70px 20px; text-align: center;
    position: relative; overflow: hidden;
    border-top: 3px solid rgba(139,92,246,0.50);
}
.axis-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 18% 50%, rgba(139,92,246,0.16) 0%, transparent 45%),
        radial-gradient(circle at 82% 40%, rgba(247,168,0,0.10)   0%, transparent 40%);
    pointer-events: none;
}
.axis-cta::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    border: 50px solid rgba(139,92,246,0.06);
    top: -150px; right: -100px; pointer-events: none;
}
.axis-cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.axis-cta .cta-icon {
    width: 78px; height: 78px; border-radius: 50%;
    background: rgba(139,92,246,0.20);
    border: 2px solid rgba(139,92,246,0.42);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #c4b5fd; margin: 0 auto 24px;
}
.axis-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.2vw, 40px); font-weight: 800;
    color: #fff; margin: 0 0 14px;
}
.axis-cta h2 span { color: #c4b5fd; }
.axis-cta > p {
    font-size: 16px; color: rgba(255,255,255,0.55);
    margin: 0 0 32px; line-height: 1.75; max-width: 600px; margin-left: auto; margin-right: auto;
}
.axis-cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-cta-violet {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 36px; border-radius: 50px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff; font-size: 15px; font-weight: 800;
    font-family: inherit; text-decoration: none; border: none;
    box-shadow: 0 6px 22px rgba(124,58,237,0.40);
    transition: all .25s;
}
.btn-cta-violet:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124,58,237,0.55); color: #fff; text-decoration: none; }

.btn-cta-ghost {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 36px; border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(196,181,253,0.55); color: #c4b5fd;
    font-size: 15px; font-weight: 800; font-family: inherit;
    text-decoration: none; transition: all .25s;
}
.btn-cta-ghost:hover { background: rgba(139,92,246,0.18); border-color: #c4b5fd; color: #fff; text-decoration: none; }

.axis-cta-sub {
    margin-top: 20px; font-size: 13px;
    color: #fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width: 900px) {
    .axis-hero-inner   { grid-template-columns: 1fr; }
    .axis-hero-card    { display: none; }
    .axis-content-grid { grid-template-columns: 1fr; }
    .axis-form-row     { grid-template-columns: 1fr; }
}
@media(max-width: 560px) {
    .axis-benefits-grid { grid-template-columns: 1fr; }
    .axis-hero-btns     { flex-direction: column; }
    .axis-cta-btns      { flex-direction: column; align-items: center; }
}