/* ==========================================================================
   Gradia + Basov Modern SaaS UI Theme for KenaliVCard-SAAS
   Enterprise-Grade SaaS Hero & Component Design System
   ========================================================================== */

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

:root {
    --g-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --g-bg-base: #ffffff;
    --g-card-bg: #ffffff;
    --g-text-dark: #0f172a;
    --g-text-muted: #64748b;
    --g-accent-primary: #0284c7;
    --g-accent-primary-hover: #0369a1;
    --g-accent-dark: #0f172a;
    --g-gradient-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    --g-gradient-primary: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    --g-border-subtle: #e2e8f0;
    --g-border-soft: #f1f5f9;
    --g-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --g-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --g-shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.08);
    --g-shadow-pill: 0 6px 18px rgba(2, 132, 199, 0.25);
    --g-radius-card: 20px;
    --g-radius-pill: 100px;
}

body {
    font-family: var(--g-font) !important;
    background-color: var(--g-bg-base) !important;
    color: var(--g-text-dark) !important;
    letter-spacing: -0.01em;
}

/* Glassmorphism Header */
.header {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid var(--g-border-subtle) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    padding: 12px 0 !important;
    transition: all 0.3s ease;
}

.header .navbar-brand img {
    max-height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header .nav-link {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--g-text-muted) !important;
    padding: 8px 16px !important;
    border-radius: var(--g-radius-pill);
    transition: all 0.2s ease !important;
}

.header .nav-link:hover, 
.header .nav-link.active {
    color: var(--g-text-dark) !important;
    background: rgba(15, 23, 42, 0.04);
}

.header .btn-white {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    font-weight: 600 !important;
    padding: 9px 24px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15) !important;
    transition: all 0.2s ease !important;
}

.header .btn-white:hover {
    background: #1e293b !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25) !important;
}

/* -------------------------------------------------------------
   SaaS Hero Section
   ------------------------------------------------------------- */
.hero-section {
    background: var(--g-gradient-hero) !important;
    padding-top: 70px !important;
    padding-bottom: 90px !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 94, 54, 0.07) 0%, rgba(124, 58, 237, 0.05) 45%, transparent 70%);
    top: -120px;
    left: 20%;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.saas-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 6px 18px 6px 8px;
    border-radius: var(--g-radius-pill);
    box-shadow: var(--g-shadow-sm);
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--g-text-dark);
}

.saas-badge-pill {
    background: var(--g-gradient-primary);
    color: #ffffff;
    padding: 3px 12px;
    border-radius: var(--g-radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-content h1.hero-title {
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.035em !important;
    color: var(--g-text-dark) !important;
    margin-bottom: 20px !important;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #0f172a 35%, #0284c7 75%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p.hero-subtitle {
    font-size: 19px !important;
    line-height: 1.6 !important;
    color: var(--g-text-muted) !important;
    font-weight: 400 !important;
    margin-bottom: 35px !important;
    max-width: 540px;
}

/* SaaS Domain / Alias Search Bar */
.saas-alias-box {
    background: #ffffff !important;
    border-radius: var(--g-radius-pill) !important;
    padding: 6px 8px 6px 20px !important;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.9) !important;
    display: flex !important;
    align-items: center !important;
    max-width: 520px;
    position: relative !important;
    margin-bottom: 12px;
}

.saas-alias-box .url-prefix {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    user-select: none;
    padding-right: 4px;
}

.saas-alias-box input.alias-input {
    border: none !important;
    background: transparent !important;
    font-size: 15px !important;
    color: var(--g-text-dark) !important;
    padding: 8px 10px !important;
    height: 48px !important;
    font-weight: 600 !important;
    flex-grow: 1 !important;
    box-shadow: none !important;
}

.saas-alias-box input.alias-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.saas-alias-box button.alias-btn {
    background: var(--g-accent-dark) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
    white-space: nowrap !important;
    transition: all 0.25s ease !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
}

.saas-alias-box button.alias-btn:hover {
    background: var(--g-accent-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35) !important;
}

/* SaaS Trust Proof / Metrics under CTA */
.saas-hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.saas-avatar-stack {
    display: flex;
    align-items: center;
}

.saas-avatar-stack img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: var(--g-shadow-sm);
}

.saas-avatar-stack img:first-child {
    margin-left: 0;
}

.saas-proof-text {
    font-size: 13px;
    color: var(--g-text-muted);
    line-height: 1.35;
}

.saas-proof-text strong {
    color: var(--g-text-dark);
    font-weight: 700;
}

/* -------------------------------------------------------------
   SaaS Dashboard + Mockup Combined Visual
   ------------------------------------------------------------- */
.saas-visual-wrapper {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

/* SaaS Admin Dashboard Card Backdrop */
.saas-dashboard-card {
    background: #ffffff;
    border: 1px solid var(--g-border-subtle);
    border-radius: 28px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.12);
    padding: 24px;
    position: relative;
    z-index: 1;
}

.saas-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.saas-window-dots {
    display: flex;
    gap: 6px;
}

.saas-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.saas-window-dots span:nth-child(1) { background: #ff5f56; }
.saas-window-dots span:nth-child(2) { background: #ffbd2e; }
.saas-window-dots span:nth-child(3) { background: #27c93f; }

.saas-dash-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 4px 14px;
    border-radius: var(--g-radius-pill);
}

.saas-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.saas-metric-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
}

.saas-metric-box .label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.saas-metric-box .val {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.saas-metric-box .trend {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}

/* Floating Basov Smartphone Mockup in Hero Visual */
.saas-floating-phone {
    background: #ffffff;
    border: 7px solid #0f172a;
    border-radius: 36px;
    padding: 18px 16px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(226, 232, 240, 0.9);
    position: absolute;
    right: -25px;
    bottom: -35px;
    width: 270px;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.saas-floating-phone:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.32);
}

.saas-floating-phone .phone-notch {
    width: 70px;
    height: 14px;
    background: #0f172a;
    border-radius: 0 0 10px 10px;
    margin: -18px auto 14px auto;
}

.saas-phone-profile {
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.saas-phone-profile img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff5e36;
}

.saas-phone-profile .name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.saas-phone-profile .sub {
    font-size: 11px;
    color: #94a3b8;
}

.saas-phone-tag {
    background: #10b981;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}

.saas-phone-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* -------------------------------------------------------------
   Features Section (Gradia Style)
   ------------------------------------------------------------- */
.features-section {
    padding: 90px 0 !important;
    background: #fafafa !important;
}

.feature-card {
    background: #ffffff !important;
    border-radius: var(--g-radius-card) !important;
    border: 1px solid var(--g-border-subtle) !important;
    padding: 32px 28px !important;
    box-shadow: var(--g-shadow-sm) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--g-shadow-md) !important;
    border-color: #cbd5e1 !important;
}

.feature-card .card-img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
    padding: 8px;
    box-shadow: none !important;
}

.feature-card .card-img img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    filter: grayscale(100%) opacity(70%);
}

.feature-card:hover .card-img img {
    filter: none;
}

.feature-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--g-text-dark) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 10px !important;
}

.feature-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--g-text-muted) !important;
}

/* Section Headings */
.section-heading h2 {
    font-size: 34px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: var(--g-text-dark) !important;
}

.section-heading h2:after {
    display: none !important;
}

/* Modern & Powerful Interface Section */
.modern-interface-section {
    padding: 90px 0 !important;
    background: #ffffff !important;
}

.interface-card {
    background: #ffffff !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: 24px !important;
    padding: 35px 40px !important;
    box-shadow: var(--g-shadow-sm) !important;
    transition: all 0.25s ease !important;
}

.interface-card:hover {
    box-shadow: var(--g-shadow-md) !important;
    border-color: #cbd5e1 !important;
}

.interface-card .card-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--g-text-dark) !important;
    letter-spacing: -0.02em !important;
}

.interface-card .card-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--g-text-muted) !important;
}

/* Matikan purple double-border pada interface-img */
.modern-interface-section .interface-card .interface-img {
    position: relative !important;
    max-width: 480px !important;
}

.modern-interface-section .interface-card .interface-img:before {
    display: none !important;
}

.modern-interface-section .interface-card .interface-img:hover:before {
    display: none !important;
}

.interface-card .interface-img img {
    border-radius: 16px !important;
    box-shadow: var(--g-shadow-md) !important;
    border: 1px solid var(--g-border-subtle) !important;
}

/* Pricing Cards */
.pricing-plan-section {
    background: #f8fafc !important;
    padding: 90px 0 !important;
    border-top: 1px solid var(--g-border-subtle) !important;
    border-bottom: 1px solid var(--g-border-subtle) !important;
}

.pricing-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--g-border-subtle) !important;
    box-shadow: var(--g-shadow-sm) !important;
    padding: 36px 30px !important;
    transition: all 0.25s ease !important;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--g-shadow-md) !important;
    border-color: #cbd5e1 !important;
}

.pricing-card .pricing-plan-heading h3,
.pricing-card .card-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--g-text-dark) !important;
}

.pricing-card .price {
    color: var(--g-text-dark) !important;
    font-weight: 800 !important;
}

.pricing-plan-section .pricing-slider .pricing-card .pricing-plan-list li.active-check .check-box {
    color: var(--g-accent-primary) !important;
}

.pricing-plan-section .pricing-slider .pricing-card .pricing-plan-list li.active-check .check-box i {
    color: var(--g-accent-primary) !important;
}

.pricing-card .btn-primary,
.pricing-card .btn-gray {
    background: var(--g-accent-dark) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15) !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    transition: all 0.2s ease !important;
}

.pricing-card .btn-primary:hover,
.pricing-card .btn-gray:hover {
    background: var(--g-accent-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3) !important;
}

.pricing-plan-section .pricing-slider .slick-dots li.slick-active button:before {
    color: var(--g-accent-dark) !important;
}

/* Slick Arrows (Sleek Minimalist Slate) */
.slick-arrow,
.center-slider .slick-arrow,
.features-section .feature-slider .slick-arrow {
    background: #ffffff !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: 50% !important;
    color: var(--g-text-dark) !important;
    box-shadow: var(--g-shadow-sm) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
}

.slick-arrow:hover,
.center-slider .slick-arrow:hover,
.features-section .feature-slider .slick-arrow:hover {
    background: var(--g-accent-dark) !important;
    color: #ffffff !important;
    border-color: var(--g-accent-dark) !important;
    transform: scale(1.05);
    box-shadow: var(--g-shadow-md) !important;
}

.slick-arrow i,
.slick-arrow svg {
    color: inherit !important;
    font-size: 15px !important;
}

/* Clean up vCard Templates Section */
.vcard-template-section {
    background: #ffffff !important;
    border-bottom: 1px solid var(--g-border-subtle) !important;
}

.vcard-template-section .vcard-bg,
.vcard-template-section .plus-vector1,
.vcard-template-section .plus-vector2,
.vcard-template-section .plus-vector3 {
    display: none !important;
}

.vcard-template-section .btn-primary-light {
    background: #ffffff !important;
    color: var(--g-text-dark) !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: var(--g-radius-pill) !important;
    font-weight: 700 !important;
    padding: 10px 30px !important;
    box-shadow: var(--g-shadow-sm) !important;
    transition: all 0.2s ease !important;
}

.vcard-template-section .btn-primary-light:hover {
    background: var(--g-accent-dark) !important;
    color: #ffffff !important;
    border-color: var(--g-accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--g-shadow-md) !important;
}

.center-slider .slick-slide {
    border-radius: 20px !important;
    border: 1px solid var(--g-border-subtle) !important;
    box-shadow: var(--g-shadow-sm) !important;
}

.center-slider .slick-current.slick-active {
    box-shadow: var(--g-shadow-lg) !important;
    border-color: #cbd5e1 !important;
}

/* Contact Section & Form Clean up */
.contact-section {
    background: #ffffff !important;
    padding: 90px 0 !important;
}

.contact-section .icon-purpul {
    color: var(--g-accent-primary) !important;
}

.contact-section .contact-icon {
    background: #f1f5f9 !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: 16px !important;
    color: var(--g-text-dark) !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
}

.contact-section .contact-form {
    background: #ffffff !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: var(--g-shadow-sm) !important;
}

.contact-section .front-input {
    background: #f8fafc !important;
    border: 1px solid var(--g-border-subtle) !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: var(--g-text-dark) !important;
}

.contact-section .front-input:focus {
    background: #ffffff !important;
    border-color: var(--g-accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12) !important;
}

.contact-section .contact-section-submit-btn {
    background: var(--g-accent-dark) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    padding: 12px 36px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
    transition: all 0.2s ease !important;
}

.contact-section .contact-section-submit-btn:hover {
    background: var(--g-accent-primary) !important;
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35) !important;
    transform: translateY(-2px);
}

/* Footer (Clean Slate Modern) */
footer.bg-light {
    background: #0b1329 !important;
    color: #94a3b8 !important;
    padding: 70px 0 30px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

footer .app-name,
footer h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

footer p.text-gray-100 {
    color: #94a3b8 !important;
}

footer .main-social-links a {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

footer .main-social-links a:hover {
    background: var(--g-accent-primary) !important;
    color: #ffffff !important;
    border-color: var(--g-accent-primary) !important;
}

footer .email {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--g-radius-pill) !important;
    padding: 6px 8px 6px 20px !important;
}

footer .email input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
}

footer .email input::placeholder {
    color: #94a3b8 !important;
}

footer .subscribe-btn button {
    background: var(--g-accent-primary) !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    transition: all 0.2s ease !important;
}

footer .subscribe-btn button:hover {
    background: var(--g-accent-primary-hover) !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

footer .footer-bottom p,
footer .footer-bottom a {
    color: #64748b !important;
    font-size: 13px !important;
    transition: color 0.2s ease;
}

footer .footer-bottom a:hover {
    color: #ffffff !important;
}

footer .custom-pages-section a {
    color: #cbd5e1 !important;
    font-size: 13px !important;
}

footer .custom-pages-section a:hover {
    color: #ffffff !important;
}

.curve-shape {
    display: none !important;
}

/* Cookie consent modal */
.js-cookie-consent {
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.js-cookie-consent .cookie-consent__message,
.js-cookie-consent p {
    color: #ffffff !important;
}

.js-cookie-consent button.js-cookie-consent-agree {
    background: var(--g-accent-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    font-weight: 700 !important;
    padding: 6px 18px !important;
}

.js-cookie-consent button.js-cookie-consent-agree:hover {
    background: var(--g-accent-primary-hover) !important;
}

.js-cookie-consent button.js-cookie-consent-declined {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    border: none !important;
    border-radius: var(--g-radius-pill) !important;
    font-weight: 600 !important;
    padding: 6px 18px !important;
}

.js-cookie-consent button.js-cookie-consent-declined:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .saas-visual-wrapper {
        margin-top: 40px;
    }
    .saas-floating-phone {
        position: static;
        margin: 20px auto 0 auto;
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Clean Unified Header Bar (Fix Floating Card & Logo Layout)
   ========================================================================== */

.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
    padding: 14px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    width: 100% !important;
}

@media (min-width: 992px) {
    .header .navbar-collapse {
        display: flex !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
}

.header .navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header .navbar-brand img {
    height: 42px !important;
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain !important;
}

.header .navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-bottom: 0 !important;
}

.header .navbar-nav .nav-item {
    padding: 0 !important;
}

.header .navbar-nav .nav-link {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 8px 18px !important;
    border-radius: 100px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    border: none !important;
}

.header .navbar-nav .nav-link:hover {
    color: #0f172a !important;
    background: #f1f5f9 !important;
}

.header .navbar-nav .nav-link.active {
    color: #0284c7 !important;
    background: #f0f9ff !important;
}

.header .dropdown .dropdown-toggle {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 8px 16px !important;
    border-radius: 100px !important;
    border: none !important;
    background: transparent !important;
}

.header .dropdown .dropdown-toggle:hover {
    color: #0f172a !important;
    background: #f1f5f9 !important;
}

.header .btn-white {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 100px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-left: 12px !important;
}

.header .btn-white:hover {
    background: #0284c7 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3) !important;
}

@media (max-width: 991px) {
    .header .navbar-collapse {
        background: #ffffff !important;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1) !important;
        border: 1px solid rgba(226, 232, 240, 0.9) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        margin-top: 15px !important;
    }
    .header .navbar-nav {
        align-items: flex-start !important;
        gap: 8px !important;
    }
}

/* ==========================================================================
   Modern 6-Feature Grid Section (About / Modern & Powerful Interface)
   Matches Sneat/Gradia theme & Reference Design
   ========================================================================== */

.modern-interface-section,
.features-section {
    padding: 90px 0 !important;
    background: #ffffff !important;
    position: relative;
}

.saas-feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    background: #eef2ff; /* Very soft pastel lavender/indigo */
    color: #6366f1; /* Indigo / purple tint */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.saas-feature-headline {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    letter-spacing: -0.03em !important;
    line-height: 1.25 !important;
    margin-bottom: 14px;
}

.saas-highlight-brush {
    position: relative;
    display: inline-block;
    color: #0f172a;
    font-weight: 800;
    z-index: 1;
}

.saas-highlight-brush::before {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 4px;
    height: 18px;
    background: linear-gradient(90deg, #fbcfe8 0%, #fed7aa 35%, #ddd6fe 75%, #bae6fd 100%);
    border-radius: 4px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: 0.85;
}

.saas-feature-lead {
    font-size: 16px !important;
    color: #64748b !important;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Item Box (Matches Minimalist Reference Style) */
.saas-feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: transparent;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.saas-feature-box:hover {
    background: #ffffff;
    box-shadow: 0 12px 30px -8px rgba(67, 89, 113, 0.08);
    transform: translateY(-4px);
}

.saas-feature-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #6366f1;
    transition: all 0.25s ease;
}

.saas-feature-box:hover .saas-feature-icon-wrap {
    transform: scale(1.1);
    color: #4f46e5;
}

.saas-feature-icon-wrap svg {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    stroke-width: 1.6 !important;
    fill: none !important;
    stroke: currentColor !important;
}

.saas-feature-icon-wrap svg * {
    fill: none !important;
    stroke: currentColor !important;
}

.saas-feature-title {
    font-size: 21px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.saas-feature-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    max-width: 320px;
}

@media (max-width: 767px) {
    .modern-interface-section {
        padding: 60px 0 !important;
    }
    .saas-feature-headline {
        font-size: 28px !important;
    }
    .saas-feature-box {
        padding: 25px 15px;
    }
}

