:root {
    --bg: #faf7f4;
    --surface: #ffffff;
    --surface-2: #f6f2ed;
    --text: #1f2937;
    --muted: #5b677a;
    --primary: #2563eb;
    --primary-600: #1e4fd6;
    --pale-blue: #e6f0ff;
    --shadow-blue: rgba(37, 99, 235, 0.45);
    --shadow-blue-soft: rgba(37, 99, 235, 0.25);
    --ring: #1e40af;
    --max: 1120px;
    --radius: 16px;
    --radius-sm: 12px;
    --header-h: 72px;
    --footer-h: 84px;
    --stage-h: calc(100vh - var(--header-h) - var(--footer-h))
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg), #fff 40%, var(--bg) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    max-width: 100%;
    display: block
}

a {
    color: var(--primary);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: .5rem .75rem;
    background: var(--pale-blue);
    box-shadow: 0 0 28px var(--shadow-blue);
    border-radius: 8px;
    z-index: 9999
}

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: var(--header-h);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 0 48px var(--shadow-blue);
    z-index: 100
}

.site-header::before {
    content: "";
    position: absolute;
    inset: -18px 0 auto 0;
    height: 36px;
    background: radial-gradient(closest-side, rgba(37, 99, 235, 0.26), transparent 70%);
    filter: blur(18px);
    pointer-events: none
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%
}

.brand {
    display: flex;
    align-items: center;
}
.brand-img {
    height: 120px;
    width:auto;
}
.logo {
    height: 60px;
    width: auto
}

/* .brand-title {
    font-size: 1.25rem;
    line-height: 1.1;
    margin: 0;
    color: var(--primary-600);
    font-weight: 700;
    text-shadow: -80px 9px 115px 24px var(--ring);
    rotate: -5deg;
    font-family:monospace;
    background-color: orange;
    box-shadow: 0 0 5 10 orange;
} */
 
.brand-title {
    font-size: 1.45rem;          
    font-weight: 700;            
    color: var(--text);          
    letter-spacing: -0.5px;      
    display: flex;
    align-items: center;
}


.brand-title span {
    color: var(--primary);        
}


@media (max-width: 640px) {
    .brand-title {
        font-size: 1.25rem;
    }}
    



.underline {
    text-decoration-line: underline;
    text-decoration-style:double;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px;


}

.nav {
    margin-left: auto
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .5rem;
    align-items: center
}

.nav-link {
    display: inline-block;
    padding: .625rem .75rem;
    border-radius: 10px;
    color: #0f172a;
    background: transparent;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease
}

.nav-link:hover {
    background: var(--surface-2);
    text-decoration: none;
    transform: translateY(-1px)
}

.nav-link[aria-current="page"] {
    background: var(--pale-blue);
    box-shadow: 0 0 24px var(--shadow-blue-soft)
}

.header-ctas {
    display: flex;
    gap: .5rem;
    margin-left: .5rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem .9rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
    box-shadow: 0 0 36px var(--shadow-blue)
}

.btn:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 3px
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-1px)
}

.btn-outline {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--primary)
}

.btn-outline:hover {
    background: var(--pale-blue)
}

.btn-ghost {
    background: transparent;
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--primary)
}

.btn-ghost:hover {
    background: var(--surface-2)
}

.stage {
    position: fixed;
    inset: var(--header-h) 0 var(--footer-h) 0;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    z-index: 1;
    overflow-x: hidden
}

.section {
    height: var(--stage-h);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    scroll-snap-align: center;
    scroll-snap-stop: always
}

.panel {
    width: 100%;
    transform-style: preserve-3d;
    will-change: transform
}

.frame {
    width: 100%;
    max-height: calc(var(--stage-h) - 3rem);
    overflow: auto;
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06)
}

.section-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: .5rem 0 1rem
}

.section-subtitle {
    color: var(--muted);
    margin: 0 0 1.5rem
}

.hero .lead {
    font-size: 1.125rem;
    color: #344256;
    max-width: 58ch
}

.hero .actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    color: #334155
}

.highlights li {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: .5rem .75rem;
    border-radius: 999px
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: .75rem
}

.card {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.card-head {
    margin-bottom: .75rem
}

.plan-name {
    margin: 0 0 .25rem;
    font-size: 1.25rem
}

.plan-price {
    margin: 0;
    color: #0f172a;
    font-weight: 700
}

.plan-caption {
    margin: .25rem 0 .75rem;
    color: #5b677a
}

.plan-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .5rem;
    color: #344256
}

.plan a.btn {
    width: 100%
}

.featured {
    outline: 2px solid var(--primary);
    box-shadow: 0 0 42px var(--shadow-blue)
}

.pricing-note {
    color: #64748b;
    margin-top: 1rem
}

.contact-layout {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr
}

.contact-info {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius);
    padding: 1rem
}

.form {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius);
    padding: 1rem
}

.field {
    display: grid;
    gap: .375rem;
    margin-bottom: .875rem
}

label {
    font-weight: 600
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    padding: .7rem .8rem;
    background: #fff;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2)
}

.form-status {
    min-height: 1.25rem;
    margin-top: .5rem;
    color: #0f5132
}

.faq .accordion {
    display: grid;
    gap: .75rem
}

.accordion-item {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm)
}

.accordion-title {
    margin: 0
}

.accordion-trigger {
    appearance: none;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    border-radius: var(--radius-sm);
    cursor: pointer
}

.accordion-trigger:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 3px
}

.accordion [role="region"] {
    padding: 0 1.25rem 1rem;
    color: #344256
}

.accordion [hidden] {
    display: none
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--footer-h);
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 0 36px var(--shadow-blue);
    display: flex;
    align-items: center;
    z-index: 100
}

.footer-grid {
    display: grid;
    gap: 10rem;
    grid-template-columns: 7fr 2fr 2fr;
    width: 100%;
    justify-content: space-around;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .25rem
}

.footer-nav a {
    color: #334155
}

.legal {
    color: #64748b;
    font-size: .9375rem;
    width: 600px
}

@media (min-width:640px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:960px) {
    .plan-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.footer-brand {
    width: 400px;
}

.footer-brand p {
    margin: 0px;
}

.legal p {
    margin: 0px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    box-shadow: 0 0 34px var(--shadow-blue)
}