* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fdf8ff;
    color: #1e1030;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary: #6d2cff;
    --primary-dark: #4a1db6;
    --secondary: #ffb347;
    --accent: #00c2ba;
    --bg-light: #fdf8ff;
    --bg-contrast: #f4f0ff;
    --bg-deep: #151225;
    --text-main: #1e1030;
    --text-light: #ffffff;
    --muted: #6a5c85;
    --border-soft: #e2d8ff;
}

.container {
    width: 100%;
    max-width: 1140px;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.row > * {
    padding: 0 0.75rem;
}

.col-12 {
    width: 100%;
}

.col-lg-5,
.col-lg-6,
.col-lg-7 {
    width: 100%;
}

.col-md-4 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.3333%;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        width: 41.6667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.3333%;
    }
}

.text-center {
    text-align: center;
}

.align-center {
    align-items: center;
}

.reverse {
    flex-direction: column-reverse;
}

@media (min-width: 992px) {
    .reverse {
        flex-direction: row;
    }
}

.navbar-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
}

.brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, var(--secondary), var(--primary));
}

.navbar-nav {
    display: none;
    gap: 1rem;
}

.navbar-contact {
    display: none;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.nav-link {
    font-size: 0.95rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    color: var(--muted);
}

.nav-link.active {
    color: var(--primary-dark);
    background-color: #efe4ff;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.navbar-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background-color: #efe4ff;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.navbar-phone-text {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
    }
    .navbar-contact {
        display: flex;
    }
    .navbar {
        gap: 1.5rem;
    }
}

.gradient-hero {
    background: radial-gradient(circle at 0% 0%, #ffd8ed 0, transparent 55%), radial-gradient(circle at 100% 0%, #d8f9ff 0, transparent 55%), linear-gradient(135deg, #1e1030 0%, #3b1f6f 40%, #1b1630 100%);
    color: var(--text-light);
    padding: 3rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-row {
    align-items: center;
}

.hero-text-col {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.hero-title {
    font-size: 1.9rem;
    margin: 1rem 0;
    line-height: 1.25;
}

.hero-lead {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.85rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 1rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #ffffff;
    border-color: transparent;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.w-100 {
    width: 100%;
}

.hero-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-meta-item {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.hero-meta-item i {
    font-size: 1.1rem;
}

.hero-image-col {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.hero-image-main {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-card {
    position: absolute;
    bottom: -1.2rem;
    left: 8%;
    right: 8%;
    background-color: #1c122c;
    border-radius: 1.1rem;
    padding: 0.9rem 1.1rem;
    color: #f9f5ff;
    font-size: 0.85rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.hero-image-card h2 {
    font-size: 1rem;
    margin: 0 0 0.35rem 0;
}

.hero-circle-detail {
    position: absolute;
    top: -1rem;
    right: -1.2rem;
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: conic-gradient(from 120deg, var(--accent), var(--secondary), var(--primary), var(--accent));
    opacity: 0.85;
    filter: blur(0.5px);
}

.section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.6rem;
}

.section-header p {
    max-width: 720px;
    margin: 0.5rem auto 0 auto;
    color: var(--muted);
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--primary-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-contrast {
    background-color: var(--bg-contrast);
}

.bg-deep {
    background-color: var(--bg-deep);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-gradient-detail {
    position: absolute;
    inset: auto auto -60px -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 186, 0.45), transparent 65%);
}

.feature-grid {
    margin-top: 1rem;
    row-gap: 1.5rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 18px 45px rgba(27, 11, 70, 0.08);
    border: 1px solid rgba(151, 126, 255, 0.16);
}

.feature-card.simple {
    box-shadow: none;
    border-radius: 0.9rem;
    border-style: dashed;
}

.feature-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--muted);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, #fff3da, #ffb347);
    color: #6b3a00;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.section-additional .content-block.light {
    color: #f6f0ff;
}

.section-additional .content-block.light p {
    color: rgba(246, 240, 255, 0.85);
}

.image-panel {
    position: relative;
    max-width: 460px;
    margin: 2rem auto 0 auto;
}

.image-panel .image-main {
    border-radius: 1.4rem;
    box-shadow: 0 20px 45px rgba(38, 24, 72, 0.25);
}

.image-panel-note {
    position: absolute;
    right: 6%;
    bottom: -1.1rem;
    left: 6%;
    border-radius: 1rem;
    padding: 0.7rem 0.9rem;
    background-color: #ffffff;
    font-size: 0.85rem;
    color: var(--muted);
    box-shadow: 0 15px 40px rgba(31, 11, 83, 0.18);
}

.note-label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.15rem;
}

.image-stack {
    position: relative;
    max-width: 460px;
    margin: 2rem auto;
}

.image-stack-main {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.image-stack-small {
    position: absolute;
    right: -10px;
    top: 60%;
    transform: translateY(-50%);
    width: 42%;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.content-block {
    max-width: 640px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.6rem;
    margin: 0 0 0.75rem 0;
}

.content-block p {
    font-size: 0.97rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.content-block.decorated {
    border-left: 4px solid var(--secondary);
    padding-left: 1.1rem;
}

.info-card {
    border-radius: 1.1rem;
    background-color: #ffffff;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 18px 45px rgba(27, 11, 70, 0.08);
    margin-top: 2rem;
}

.info-card h3 {
    margin: 0 0 0.6rem 0;
}

.info-card p {
    margin: 0 0 0.8rem 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.info-list li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.info-year {
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.soft-gradient {
    background: linear-gradient(135deg, #fef3dd 0%, #fcecff 40%, #ebfaff 100%);
}

.section-cta .cta-text h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0.75rem 0;
}

.section-cta .cta-text p {
    font-size: 0.96rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.cta-box {
    margin-top: 2rem;
    border-radius: 1.2rem;
    padding: 1.2rem 1.3rem;
    background-color: #1d1033;
    color: #f7f2ff;
}

.cta-box h3 {
    margin: 0 0 0.6rem 0;
}

.cta-phone-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.3rem 0 0.7rem 0;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--secondary);
}

.cta-phone i {
    font-size: 1rem;
}

.cta-note {
    font-size: 0.88rem;
    color: rgba(247, 242, 255, 0.8);
}

.section-contact {
    border-top: 1px solid var(--border-soft);
}

.contact-intro h2 {
    font-size: 1.5rem;
    margin: 0.4rem 0 0.75rem 0;
}

.contact-intro p {
    font-size: 0.96rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.contact-address {
    margin-top: 1rem;
}

.contact-address-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.93rem;
    color: var(--muted);
}

.contact-address-item i {
    color: var(--primary-dark);
}

.contact-form {
    margin-top: 2rem;
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 16px 36px rgba(38, 24, 72, 0.12);
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
    color: var(--muted);
}

.form-control {
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid var(--border-soft);
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    background-color: #ffffff;
    color: var(--text-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(109, 44, 255, 0.12);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.4rem;
    margin-bottom: 0.9rem;
}

.form-check input[type="checkbox"] {
    margin-top: 0.15rem;
}

.site-footer {
    background-color: #0f0a1c;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 2.4rem;
    margin-top: 2.4rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer-main .footer-text {
    font-size: 0.9rem;
    color: rgba(232, 222, 255, 0.8);
    max-width: 620px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.5rem 0;
}

.footer-column p,
.footer-column a {
    font-size: 0.86rem;
    color: rgba(232, 222, 255, 0.85);
}

.footer-column a {
    display: block;
    margin-bottom: 0.2rem;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding: 0.8rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: rgba(232, 222, 255, 0.8);
}

.simple-footer {
    background-color: #0f0a1c;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.2rem 0;
    margin-top: 2rem;
}

.page-hero {
    padding: 2.5rem 0 2.8rem 0;
    background: linear-gradient(135deg, #f9efff 0%, #e9f5ff 60%, #fdf8ff 100%);
}

.page-hero h1 {
    margin: 0 0 0.75rem 0;
    font-size: 1.7rem;
    color: #25123a;
}

.legal-hero h1{
    color: #fff;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    font-size: 0.97rem;
    color: var(--muted);
}

.legal-hero {
    background: linear-gradient(135deg, #151225 0%, #251a45 40%, #151225 100%);
    color: var(--text-light);
}

.legal-hero p {
    color: rgba(246, 240, 255, 0.85);
}

.legal-section {
    background-color: #fdf8ff;
    padding: 2.6rem 0 3rem 0;
}

.legal-section h2 {
    font-size: 1.2rem;
    margin: 1.6rem 0 0.4rem 0;
    color: #25123a;
}

.legal-section p {
    font-size: 0.96rem;
    color: var(--muted);
    margin: 0 0 0.6rem 0;
}

.legal-footer {
    margin-top: 0;
}

.thankyou-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 0% 0%, #ffd8ed 0, transparent 55%), radial-gradient(circle at 100% 0%, #d8f9ff 0, transparent 55%), #fdf8ff;
    padding: 3rem 0;
}

.thankyou-card {
    max-width: 520px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 1.4rem;
    padding: 2rem 2.2rem;
    box-shadow: 0 24px 60px rgba(27, 11, 70, 0.14);
    text-align: center;
}

.thankyou-card h1 {
    font-size: 1.5rem;
    margin: 0.7rem 0 0.6rem 0;
}

.thankyou-card p {
    font-size: 0.94rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.thankyou-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.7rem;
}

.thankyou-btn {
    margin-top: 0.9rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-lead {
        font-size: 1rem;
    }
    .section {
        padding: 3.2rem 0;
    }
    .page-hero {
        padding: 3rem 0 3.4rem 0;
    }
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    .thankyou-card {
        padding: 2.3rem 2.6rem;
    }
}

@media (min-width: 992px) {
    .hero-row {
        align-items: center;
    }
    .hero-text-col {
        margin-bottom: 0;
    }
}
