* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #020617;
    color: #ffffff;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 44px;
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    height: 180px;
    width: auto;
	margin-left: -40px;
}

.nav-cta {
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.35), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.16), transparent 30%),
        linear-gradient(180deg, #020617, #0f172a);
    overflow: hidden;
}

.hero-content {
    max-width: 980px;
}

.eyebrow {
    color: #38bdf8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    margin: 0;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin: 0;
}

h3 {
    margin-top: 0;
    color: #38bdf8;
}

p {
    color: #cbd5e1;
    line-height: 1.65;
}

.hero p {
    max-width: 780px;
    margin: 28px auto;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 14px;
    padding: 16px 28px;
    font-weight: 800;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.primary {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #ffffff;
    box-shadow: 0 16px 42px rgba(37, 99, 235, 0.34);
}

.secondary {
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

.section {
    max-width: 1180px;
    margin: auto;
    padding: 96px 22px;
}

.section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 54px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.20);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.42);
}

.icon {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
}

.dark-strip {
    max-width: none;
    background: linear-gradient(180deg, #020617, #0f172a, #020617);
}

.booking-section {
    padding: 96px 22px;
    background:
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.28), transparent 30%),
        #020617;
}

.booking-card {
    max-width: 960px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.32);
}

.booking-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 700;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #020617;
    color: #ffffff;
    font-size: 15px;
}

textarea {
    resize: vertical;
}

.full {
    width: 100%;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    padding: 28px 18px;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* Animations */
.fade-up {
    animation: fadeUp 0.9s ease both;
}

.fade-down {
    animation: fadeDown 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

.delay-3 {
    animation-delay: 0.36s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .grid,
    .booking-card {
        grid-template-columns: 1fr;
    }

    .site-header {
        padding: 14px 20px;
    }

    .logo {
        height: 105px;
		width: auto;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 14px;
    }
}

.demo-section {

    padding: 100px 24px;

    background:
    radial-gradient(circle at top left,
    rgba(59,130,246,0.14),
    transparent 30%),
    #020617;

}

.demo-heading {

    text-align: center;

    max-width: 760px;

    margin: auto auto 60px;

}

.eyebrow {

    color: #38bdf8;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: bold;

    margin-bottom: 18px;

}

.demo-heading h2 {

    font-size: clamp(36px, 5vw, 56px);

    margin-bottom: 20px;

    color: white;

}

.demo-heading p {

    font-size: 20px;

    color: #cbd5e1;

    line-height: 1.7;

}

.demo-wrapper {

    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 120px 1fr;

    gap: 30px;

    align-items: center;

}

.phone-demo,
.crm-demo {

    background: rgba(15,23,42,0.82);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 35px;

    backdrop-filter: blur(10px);

    box-shadow:
    0 0 40px rgba(0,0,0,0.35);

}

.phone-header,
.crm-header {

    color: white;

    font-size: 20px;

    font-weight: bold;

    margin-bottom: 28px;

}

.missed-call {

    background: rgba(239,68,68,0.16);

    border: 1px solid rgba(239,68,68,0.3);

    padding: 20px;

    border-radius: 18px;

    margin-bottom: 24px;

    color: white;

}

.missed-call span {

    display: block;

    color: #f87171;

    font-size: 14px;

    margin-bottom: 8px;

}

.missed-call strong {

    display: block;

    font-size: 28px;

    margin-bottom: 6px;

}

.missed-call small {

    color: #cbd5e1;

}

.sms-bubble {

    background: linear-gradient(
    135deg,
    #2563eb,
    #38bdf8);

    padding: 18px;

    border-radius: 18px;

    color: white;

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 18px;

}

.customer-reply {

    background: rgba(255,255,255,0.08);

    padding: 18px;

    border-radius: 18px;

    color: white;

    line-height: 1.6;

}

.arrow {

    text-align: center;

    font-size: 70px;

    color: #38bdf8;

    font-weight: bold;

}

.lead-card {

    background: rgba(255,255,255,0.06);

    border-radius: 20px;

    padding: 24px;

    margin-bottom: 24px;

}

.lead-status {

    display: inline-block;

    background: rgba(34,197,94,0.16);

    color: #4ade80;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: bold;

    margin-bottom: 18px;

}

.lead-card h3 {

    color: white;

    margin-bottom: 18px;

}

.lead-card p {

    color: #cbd5e1;

    margin-bottom: 10px;

}

.timeline div {

    background: rgba(255,255,255,0.06);

    padding: 16px;

    border-radius: 14px;

    margin-bottom: 14px;

    color: white;

}

.demo-cta {

    text-align: center;

    margin-top: 70px;

}

.demo-cta h3 {

    color: white;

    font-size: 36px;

    margin-bottom: 24px;

}

.demo-cta .button {

    display: inline-block;

    padding: 18px 34px;

    border-radius: 14px;

    background:
    linear-gradient(
    135deg,
    #38bdf8,
    #2563eb);

    color: white;

    text-decoration: none;

    font-weight: bold;

    font-size: 18px;

    transition: 0.3s ease;

}

.demo-cta .button:hover {

    transform: translateY(-2px);

    opacity: 0.92;

}

@media (max-width: 900px) {

    .demo-wrapper {

        grid-template-columns: 1fr;

    }

    .arrow {

        transform: rotate(90deg);

    }

}

.urgent-badge {

    display: inline-block;

    background: rgba(239,68,68,0.18);

    color: #f87171;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: bold;

    margin-bottom: 18px;

    margin-left: 10px;

}

a[href^="tel"] {
    color: white !important;
    text-decoration: none !important;
}

.missed-call strong {
    color: white !important;
}