main {
    min-height: 60vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.08), transparent 25%), radial-gradient(circle at 80% 0%, rgba(25, 135, 84, 0.08), transparent 22%), linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96));
}

.hero-blob {
    position: absolute;
    width: 360px;
    height: 360px;
    top: -60px;
    right: -120px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0));
    filter: blur(20px);
}

.hero-dots {
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 240px;
    opacity: 0.35;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.feature-icon.success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.feature-icon.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #d39e00;
}

.diagram-card {
    border: 1px dashed rgba(0, 0, 0, 0.08);
}

div:has(>input#id_phone) {
    display: none;
}

/* Blogpost Styles */

.blogpost-hero {
    background: radial-gradient(circle at 12% 20%, rgba(13, 110, 253, 0.14), transparent 28%),
                radial-gradient(circle at 82% 10%, rgba(25, 135, 84, 0.15), transparent 24%),
                linear-gradient(135deg, #f7f9fb, #ffffff);
    position: relative;
    overflow: hidden;
}
.blogpost-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(13, 110, 253, 0.08), transparent 30%),
                radial-gradient(circle at 70% 20%, rgba(255, 193, 7, 0.08), transparent 26%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}
.blogpost-hero .orbit {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -140px;
    border: 1px dashed rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}
.blogpost-hero .glow {
    position: absolute;
    width: 260px;
    height: 260px;
    left: -120px;
    top: -60px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.18), rgba(13, 110, 253, 0));
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.blogpost-hero > .container {
    position: relative;
    z-index: 1;
}
.blog-back-link:hover {
    text-decoration: underline !important;
}
.blog-hero-card {
    box-shadow: 0 16px 46px rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.blog-list-hero .hero-dots {
    top: 10px;
    left: -30px;
    bottom: auto;
}
.blog-pill-group .badge {
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-weight: 600;
}
.blog-highlight {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.12);
}
.blog-list .blog-list-item {
    border-color: rgba(0, 0, 0, 0.04);
    transition: background-color 0.15s ease, padding-left 0.15s ease;
}
.blog-list .blog-list-item:hover {
    background: rgba(13, 110, 253, 0.03);
    padding-left: 1.25rem;
}
.eyebrow {
    letter-spacing: 0.08em;
}
.tag-badge {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.meta-pill {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.blogpost-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.04);
}
.blogpost-content h2, .blogpost-content h3, .blogpost-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    scroll-margin-top: 110px;
}
.blogpost-content p {
    line-height: 1.7;
    color: #495057;
}
.blogpost-content ul {
    padding-left: 1rem;
}
.blogpost-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    color: #0d6efd;
    font-weight: 500;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 0.75rem;
}
.blogpost-content img {
    max-width: 100%;
}
.related-card {
    border: 1px dashed rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}
.related-card:hover {
    border-color: rgba(13, 110, 253, 0.25);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.08);
    transform: translateY(-2px);
}

/* Contact page */
.contact-hero .hero-dots {
    top: 10px;
    left: -30px;
    bottom: auto;
}
.contact-pill-group .badge {
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-weight: 600;
}
.contact-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(13, 110, 253, 0.08);
}
.contact-method {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.05);
    transition: all 0.2s ease;
}
.contact-method:hover {
    border-color: rgba(13, 110, 253, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(13, 110, 253, 0.1);
}
.contact-step {
    position: relative;
    border: 1px dashed rgba(0, 0, 0, 0.08);
}
.contact-step .step-number {
    position: absolute;
    top: -14px;
    left: 12px;
    background: #0d6efd;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.25);
}

