@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap";

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --accent-gold: #2563eb;
    --accent-gold-glow: rgba(37, 99, 235, .3);
    --accent-blue: #0070f3;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --glass-bg: rgba(255, 255, 255, .8);
    --glass-border: rgba(0, 0, 0, .08);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, .05);
    --section-padding: 100px 20px;
    --container-max-width: 1600px;
    --transition-fast: .2s ease;
    --transition-smooth: .4s cubic-bezier(.4, 0, .2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
.font-heading {
    font-family: Outfit, sans-serif;
    font-weight: 700;
    letter-spacing: -.02em
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--glass-border) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: .5
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--accent-gold);
    color: #ffffff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--accent-gold-glow)
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary)
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold)
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.mobile-menu.active {
    transform: translateY(0)
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    font-family: Outfit, sans-serif
}

.mobile-menu a:hover {
    color: var(--accent-gold)
}

@media(max-width:768px) {
    .nav-links {
        display: none !important
    }

    .mobile-menu-btn {
        display: block
    }

    :root {
        --section-padding: 60px 20px
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px
    }

    h1.gradient-text {
        font-size: 2.5rem !important;
        line-height: 1.2 !important
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px
}

.section-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 15px
}

.grid {
    display: grid;
    gap: 30px
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.card {
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border)
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--card-shadow)
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px
}

.card p {
    color: var(--text-secondary);
    font-size: .95rem
}

.link-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition-fast)
}

.link-btn:hover {
    transform: translate(5px);
    text-shadow: 0 0 10px var(--accent-gold-glow)
}

.card .icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-gold);
    font-size: 1.5rem
}

.problem-card {
    border-left: 4px solid var(--accent-gold)
}

.solution-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0))
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin: 50px auto;
    padding: 8px;
    background: rgba(0, 0, 0, 0.02);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    width: fit-content;
    position: relative;
    z-index: 10;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.tabs-nav::-webkit-scrollbar {
    display: none
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2
}

.tab-btn.active {
    color: #ffffff
}

.tab-btn-bg {
    position: absolute;
    top: 8px;
    left: 8px;
    height: calc(100% - 16px);
    background: var(--accent-gold);
    border-radius: 100px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    z-index: 1
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.industry-glass-card {
    display: flex;
    gap: 60px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    align-items: center
}

@media(max-width:992px) {
    .industry-glass-card {
        flex-direction: column;
        padding: 40px;
        gap: 40px
    }
}

.industry-info {
    flex: 1
}

.industry-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, .1) 0%, transparent 70%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    overflow: hidden
}

.industry-visual:after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--accent-gold), transparent);
    animation: rotate 10s linear infinite;
    opacity: .1
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.trust-foundation-container {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), #ffffff03);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

@media(max-width:992px) {
    .trust-foundation-container {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 60px
    }
}

.security-main-info {
    position: relative;
    z-index: 2
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, .3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px
}

.security-grid-refined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

@media(max-width:576px) {
    .security-grid-refined {
        grid-template-columns: 1fr
    }
}

.security-feature {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.security-seal {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth)
}

.security-feature:hover .security-seal {
    border-color: var(--accent-gold);
    background: rgba(37, 99, 235, 0.1);
    transform: rotate(5deg)
}

.security-feature h4 {
    font-size: 1.1rem;
    color: var(--text-primary)
}

.security-feature p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.5
}

.glass-shield-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center
}

.shield-main {
    width: 120px;
    height: 150px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.3)
}

.shield-rings {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(37, 99, 235, .2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite
}

.shield-rings:nth-child(2) {
    animation-delay: 1s
}

.shield-rings:nth-child(3) {
    animation-delay: 2s
}

@keyframes pulse-ring {
    0% {
        transform: scale(.8);
        opacity: .5
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}

footer {
    padding: 80px 0 40px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px
}

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 10px
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 5px
}

.pricing-price {
    text-align: center;
    margin-bottom: 10px
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary)
}

.pricing-price .period {
    color: var(--text-secondary);
    font-size: 1rem
}

.pricing-setup {
    text-align: center;
    color: var(--accent-gold);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 20px
}

.pricing-target {
    text-align: center;
    font-size: .9rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 25px
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem
}

.pricing-features li span {
    color: var(--accent-gold);
    font-weight: 700
}

.pricing-features li.disabled {
    opacity: .5;
    text-decoration: line-through
}

.pricing-features li.disabled span {
    color: var(--text-secondary)
}

.full-width {
    width: 100%;
    text-align: center
}

.pricing-card.popular {
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
    z-index: 2
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: var(--accent-gold);
    color: #fff;
    padding: 5px 15px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px
}

.addon-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px
}

.addon-icon {
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.03);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0
}

.addon-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary)
}

.addon-price {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: .95rem
}

.addon-features {
    list-style: none
}

.addon-features li {
    font-size: .9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px
}

.addon-features li:before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0
}

@media(max-width:900px) {
    .pricing-card.popular {
        transform: none
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform .3s ease
}

.modal-overlay.active .modal-content {
    transform: translateY(0)
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10
}

.booking-step {
    display: none;
    animation: fadeIn .3s ease
}

.booking-step.active {
    display: block
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
    border-radius: 8px
}

.calendar-header button {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center
}

.calendar-day-header {
    color: var(--text-secondary);
    font-size: .8rem;
    margin-bottom: 5px
}

.calendar-day {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease;
    background: rgba(0, 0, 0, 0.01)
}

.calendar-day:hover:not(.disabled) {
    background: var(--accent-gold);
    color: #ffffff
}

.calendar-day.selected {
    background: var(--accent-gold);
    color: #ffffff;
    font-weight: 700
}

.calendar-day.disabled {
    opacity: .3;
    cursor: not-allowed
}

.calendar-day.today {
    border: 1px solid var(--accent-gold)
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px
}

.back-btn {
    background: none;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .8rem
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
}

.time-slot {
    background: rgba(0, 0, 0, 0.03);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid transparent
}

.time-slot:hover {
    border-color: var(--accent-gold);
    background: rgba(37, 99, 235, 0.1)
}

.form-group {
    margin-bottom: 15px
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-size: .9rem
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold)
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.bg-shape {
    position: absolute;
    filter: blur(100px);
    z-index: -2;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    border-radius: 50%;
}

.bg-shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-gold-glow);
    animation-delay: 0s;
}

.bg-shape-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(96, 165, 250, 0.2);
    animation-delay: -5s;
}

.bg-shape-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: rgba(37, 99, 235, 0.15);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

body {
    background-color: rgba(248, 250, 252, 0.8);
}

.btn-primary {
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}