/* ==========================================================================
   Variables
   ========================================================================== */

:root {

    /* Colors */

    --lp-primary: #2563eb;
    --lp-secondary: #1d4ed8;
    --lp-accent: #10b981;

    --lp-text: #111827;
    --lp-text-light: #6b7280;

    --lp-background: #ffffff;
    --lp-surface: #f8fafc;

    --lp-border: #e5e7eb;

    --lp-success: #16a34a;
    --lp-warning: #f59e0b;
    --lp-danger: #dc2626;

    /* Layout */

    --lp-container-width: 1280px;

    --lp-section-spacing: 3rem;

    --lp-radius: 8px;

    --lp-shadow:
        0 10px 30px rgba(0,0,0,.08);

    /* Typography */

    --lp-font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --lp-font-size-base: 16px;

    --lp-line-height: 1.6;

}

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    color: var(--lp-text);

    background: var(--lp-background);

    font-family: var(--lp-font-family);

    font-size: var(--lp-font-size-base);

    line-height: var(--lp-line-height);

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

svg {

    display: block;

}

a {

    color: inherit;

    text-decoration: none;

}

button,
input,
textarea,
select {

    font: inherit;

}

ul,
ol {

    margin: 0;
    padding: 0;

}

figure {

    margin: 0;

}

/* ==========================================================================
   Layout
   ========================================================================== */

.lp-container {

    width: min(100% - 2rem, var(--lp-container-width));

    margin-inline: auto;

}

.lp-section {

    padding-block: var(--lp-section-spacing);

}

.lp-header-section {

    padding-block: calc( var(--lp-section-spacing) / 2);

}

.lp-grid {

    display: grid;

    gap: 2rem;

}

.lp-stack {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

}

.lp-cluster {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 1rem;

}

/* ==========================================================================
   Typography
   ========================================================================== */

.lp-title {

    margin: 0;

    line-height: 1.2;

    font-weight: 700;

}

.lp-title--xl {

    font-size: clamp(2.5rem, 5vw, 4rem);

}

.lp-title--lg {

    font-size: clamp(2rem, 4vw, 3rem);

}

.lp-title--md {

    font-size: clamp(1.5rem, 3vw, 2rem);

}

.lp-text {

    margin: 0;

}

.lp-lead {

    margin: 0;

    font-size: 1.25rem;

    color: var(--lp-text-light);

}

/* ==========================================================================
   Buttons
   ========================================================================== */

.lp-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .5rem;

    min-height: 48px;

    padding: .75rem 1.5rem;

    border: 1px solid transparent;

    border-radius: var(--lp-radius);

    cursor: pointer;

    transition: .25s;

}

.lp-button--primary {

    background: var(--lp-primary);

    color: #fff;

}

.lp-button--primary:hover {

    background: var(--lp-secondary);

}

.lp-button--outline {

    border-color: var(--lp-border);

}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 100;

    background: var(--lp-background);

    border-bottom: 1px solid var(--lp-border);

}

.site-header__inner{

    min-height:72px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.primary-navigation{

    display:flex;

    align-items:center;

    gap:2rem;

}

.mobile-menu-toggle{

    display:none;

}

.primary-menu {

    display: flex;

    align-items: center;

    gap: 2rem;

    list-style: none;

}

@media (max-width:768px){

    .primary-navigation{

        display:none;

    }

    .mobile-menu-toggle{

        display:flex;

    }

}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer{

    margin-top:5rem;

    padding:4rem 0;

    border-top:1px solid var(--lp-border);

    background:var(--lp-surface);

}

.site-footer .lp-container{

    display:flex;

    flex-direction:column;

    gap:2rem;

}

.footer-branding{

    display:flex;

    justify-content:center;

}

.footer-menu{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:1.5rem;

    list-style:none;

}

.footer-disclaimer{

    max-width:760px;

    margin-inline:auto;

    text-align:center;

    color:var(--lp-text-light);

    font-size:.9rem;

}

.footer-copyright{

    text-align:center;

    color:var(--lp-text-light);

    font-size:.9rem;

}

/* ==========================================================================
   Utilities
   ========================================================================== */

.lp-text-center {

    text-align: center;

}

.lp-hidden {

    display: none !important;

}

.screen-reader-text {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0,0,0,0);

    white-space: nowrap;

    border: 0;

}

.screen-reader-text:focus {

    position: fixed;

    top: 1rem;

    left: 1rem;

    width: auto;

    height: auto;

    padding: .75rem 1rem;

    clip: auto;

    background: #000;

    color: #fff;

    z-index: 99999;

}


/*Form*/
.cf7-contact-form {
    max-width: 720px;
    margin: 30px auto 45px;
}

.cf7-row + .cf7-row {
    margin-top: 1.5rem;
}

.cf7-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.cf7-field label span {
    color: #dc2626;
}

.cf7-field input[type="text"],
.cf7-field input[type="email"],
.cf7-field input[type="url"],
.cf7-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    font: inherit;
    line-height: 1.5;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}

.cf7-field textarea {
    min-height: 180px;
    resize: vertical;
}

.cf7-field input:focus,
.cf7-field textarea:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}

.cf7-checkbox .wpcf7-list-item {
    margin: 0;
}

.cf7-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-weight: 400;
    cursor: pointer;
}

.cf7-checkbox input[type="checkbox"] {
    margin-top: .2rem;
}

.cf7-submit {
    margin-top: 2rem;
}

.cf7-submit .wpcf7-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    padding: .9rem 2rem;
    border: 0;
    border-radius: .5rem;
    background: var(--lp-primary);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.cf7-submit .wpcf7-submit:hover {
    background: var(--lp-hover);
}

.cf7-submit .wpcf7-submit:active {
    transform: translateY(1px);
}

.cf7-submit .wpcf7-spinner {
    margin-left: .75rem;
}

.wpcf7-not-valid-tip {
    margin-top: .35rem;
    font-size: .875rem;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2rem 0 0;
    padding: 1rem 1.25rem;
    border-radius: .5rem;
}

@media (max-width: 768px) {
    .cf7-contact-form {
        max-width: 100%;
    }

    .cf7-submit .wpcf7-submit {
        width: 100%;
    }
}