:root {
    --color-blue: #7A9BAE;
    --color-green: #9DBFAF;
    --color-orange: #F28C28;
    --color-dark-gray: #3E4C59;
    --color-mid-gray: #778899;
    --color-light-gray: #DDE3E6;
    --color-yellow: #FFD166;
    --color-pink: #F497B7;
    --color-purple: #B29DD9;
}

.bg-blue {
    background-color: var(--color-blue) !important;
}

.bg-green {
    background-color: var(--color-green) !important;
}

.bg-orange {
    background-color: var(--color-orange) !important;
}

.bg-dark-gray {
    background-color: var(--color-dark-gray) !important;
}

.bg-mid-gray {
    background-color: var(--color-mid-gray) !important;
}

.bg-light-gray {
    background-color: var(--color-light-gray) !important;
}

.bg-yellow {
    background-color: var(--color-yellow) !important;
}

.bg-pink {
    background-color: var(--color-pink) !important;
}

.bg-purple {
    background-color: var(--color-purple) !important;
}




.roboto-thin {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: italic;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; 
    background-color: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333333;
}

.container-fluid {
    padding-left: 0; /* Ta bort vänster padding */
    padding-right: 0; /* Ta bort höger padding */
    margin: 0; /* Säkerställ att ingen margin finns */
}



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}

/* Rubrikstorlekar */
h1 {
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    padding: 15px 0;
}

p {
    margin-bottom: 1.5em;
    font-weight: 400;
    line-height: 1.5em;
}

.header {
    width: 100%; /* Ensure header is full width */
}

.logo-align-left {
    height: 30px; /* Logo height */
    width: auto; /* Maintain aspect ratio */
    padding-left: 15px !important;
}

.logo-container {
    display: flex;
    justify-content: left; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    padding: 20px 0; /* Adjust padding as needed */
}

.navbar-custom {
    position: absolute; /* Position navbar absolutely within the background section */
    top: 0; /* Align to the top */
    left: 0;
    right: 0; /* Stretch across the full width of the container */
    z-index: 1000; /* Higher index to keep it on top */
    border: none;
}

    .navbar-custom .navbar {
        background-color: transparent; /* Set navbar background to transparent */
        color: white;
    }

    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-nav .nav-link {
        color: white; /* Ensure text is white for visibility */
        font-size: 18px;
        font-weight: 700;
    }

    .navbar-custom .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white border for the toggle button */
    }

    .navbar-custom .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        /* Adjusted color for visibility */
    }

    .navbar-custom .navbar-light .navbar-toggler-icon {
        filter: invert(1) grayscale(100%) brightness(200%);
        /* Enhance visibility of the toggler icon against darker backgrounds */
    }

    .navbar-custom .navbar-nav .nav-link:hover,
    .navbar-custom .navbar-nav .nav-link:focus {
        color: #ccc; /* Light gray for hover and focus states */
    }

    .navbar-custom .navbar-nav .active > .nav-link,
    .navbar-custom .navbar-nav .nav-link.active,
    .navbar-custom .navbar-nav .nav-link.show,
    .navbar-custom .navbar-nav .show > .nav-link {
        color: #ffffff; /* Keep active links white */
    }

.nav-link {
    color: white !important; /* Ensure links are white for visibility */
}

.background-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
}




    /* Make sure your text is above the overlay */
    .background-section h1,
    .background-section p {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: 30px;
    }

    /* Adjust h1 size separately if needed */
    .background-section h1 {
        font-size: 70px;
        font-weight: 400;
    }

/*header {
    background-color: #ffffff;*/ /* White background */
/*}*/





.card {
    background-color: #ffffff; /* Vit bakgrund för kort */
    border: 1px solid #e1e4e8; /* Lätt grå kant för definition */
    border-radius: 0px; /* Rundade hörn */
    box-shadow: none;
}

.card-title {
    text-align: center !important;
}


.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between; */
    justify-content: flex-start; /* Ändrar från space-between till flex-start */
    align-items: flex-start; /* Ser till att allt innehåll börjar från toppen */

}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); /* Lägger till en lätt skugga för djup */
}


form {
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
    color: #ffffff; /* White text for better visibility */
    padding: 20px; /* Padding around the form's content */
    border-radius: 0px; /* Rounded corners */
    border: none; /* No border for a cleaner look */
}

.form-group {
    margin-bottom: 15px; /* Space between form elements */
}

input[type="email"], input[type="text"], button {
    background: rgba(255, 255, 255, 0.8); /* Lightly transparent white background */
    color: #333; /* Dark text for readability */
    border-radius: 0px; /* Slightly rounded corners on inputs and buttons */
    border: 1px solid #ccc; /* Light gray border */
    padding: 10px 15px; /* Padding inside inputs and buttons for better touch */
}

button {
    background: #7A9BAE; /* Bootstrap primary button color */
    color: #ffffff; /* White text on buttons */
    border-color: #7A9BAE; /* Border color same as background */
}





.section-background {
    background-color: #f8f9fa;
}

.img-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

    .img-circle:hover {
        transform: scale(1.05); /* Scales up the image slightly on hover */
    }

.title-with-line {
    position: relative;
    display: inline-block; /* Gör så att linjen anpassar sig efter textens bredd */
    margin-bottom: 25px; /* Ger lite utrymme mellan rubrik och linje */
}

    .title-with-line::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px; /* Position just under the text */
        height: 2px; /* Linjens tjocklek */
        background-color: #333; /* Linjens färg, justera efter ditt tema */
        width: 50%; /* Bredden på linjen, kan justeras efter önskemål */
        margin: 0 auto; /* Centrerar linjen under texten */
    }

.btn-primary {
    background-color: #7A9BAE;
    border-color: #7A9BAE;
    border-radius: 0;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        background-color: #6A8BAE; /* En mörkare nyans för hover-effekt */
        border-color: #6A8BAE;
    }


@media (max-width: 768px) {
    .card {
        margin-bottom: 20px; /* Öka mellanrummet mellan kort på små skärmar */
    }

    .container, .container-fluid {
        /*padding: 15px; */
        padding-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .img-circle {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #ffffff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease-in-out;
    }

        .img-circle:hover {
            transform: scale(1.05); /* Scales up the image slightly on hover */
        }
}


.bg-greenish {
    background-color: #4D6873;
    color: #ffffff;
}

.bg-whiteish {
    background-color: #ffffff;
    color: #333333;
}


.text-container {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 1050px;
    margin: auto;
}

    .text-container h1 {
        margin-bottom: 10px;
        letter-spacing: 1px; /* Mellanrum mellan bokstäver */
        line-height: 1.2; /* Radavstånd för rubriken */
    }

    .text-container p {
        letter-spacing: 0.5px; /* Mellanrum mellan bokstäver */
        line-height: 1.5; /* Radavstånd för paragrafen */
    }



@media (max-width: 576px) {
    /* Stilregler för extra små enheter */
    .background-section {
        min-height: 30vh; /* Adjust the height as needed */
    }

    .text-container h1 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 1px; /* Mellanrum mellan bokstäver */
        line-height: 1.2; /* Radavstånd för rubriken */
    }

    .text-container p {
        font-size: 18px;
        letter-spacing: 0.5px; /* Mellanrum mellan bokstäver */
        line-height: 1.5; /* Radavstånd för paragrafen */
    }
}

@media (max-width: 768px) {
    /* Stilregler för små enheter */
    .background-section {
        min-height: 55vh; /* Adjust the height as needed */
    }

    .text-container h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 1px; /* Mellanrum mellan bokstäver */
        line-height: 1.2; /* Radavstånd för rubriken */
    }

    .text-container p {
        font-size: 20px;
        letter-spacing: 0.5px; /* Mellanrum mellan bokstäver */
        line-height: 1.5; /* Radavstånd för paragrafen */
    }
}

@media (min-width: 768px) {
    /* Stilregler för mellanstora enheter */


}

@media (min-width: 992px) {
    /* Stilregler för stora enheter */

}

@media (min-width: 1200px) {
    /* Stilregler för extra stora enheter */

}

@media (min-width: 1400px) {
    /* Stilregler för extra extra stora enheter */
}

#toast-container .toast-success {
    background-color: #4caf50; /* Change to your preferred color */
    opacity: 1; /* Remove transparency */
    border: none; /* Remove border */
}

#toast-container .toast-error {
    opacity: 1; /* Remove transparency */
    border: none; /* Remove border */
}

.section-cta-image-text .container-fluid {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.section-cta-image-text {
    padding: 0;
    margin: 0;
}

    .section-cta-image-text .section-cta-row {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    }

.cta-image-text-side {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0;
    margin: 0;
}

    .cta-image-text-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.cta-text--inner {
    padding: 20px;
    text-align: left;
    flex-direction: column;
    justify-content: center;
}

.centered-text {
    width: 80%;
    margin: 0 auto;
}

.section-cta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.cta-text--inner a.btn {
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
}

@media (min-width: 1440px) {
    /* Stilar för extra stora skärmar */
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1820px;
    }
}



/* Column */
.custom-column {
    display: flex;
    justify-content: center; /* Center the content inside each column */
    align-items: center; /* Center vertically if needed */
}

/* Box for Icon and Text */
.custom-box {
    width: 70%;
    /* max-width: 300px; */
    text-align: center;
    background-color: transparent;
    padding: 20px 0;
    margin: 0 auto; /* Ensure the box is centered within the column */
}

/* Icon Box */
.custom-icon-box {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto; /* Auto margins for centering */
    color: #fff; /* Text/icon color inside the box */
    font-size: 3.5rem;
    background-color: inherit; /* Dynamically inherited from inline PHP */
    border-radius: 0; /* Ensure no border radius for square shape */
}

/* Text Styles */


.custom-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px; /* Slight spacing below title */
}

.custom-icon-box .lucide-icon {
    font-size: 4rem; /* Adjust size as needed */
    width: 4rem; /* Control width of the SVG */
    height: 4rem; /* Control height of the SVG */
    stroke-width: 2; /* Adjust line thickness */
    fill: none; /* Ensure no fill */
    margin: auto; /* Center icon within its box */
}

.custom-text {
    /* font-size: 18px;
  color: #333333; */
    margin-bottom: 15px;
    line-height: 1.6; /* Improve readability */
}

.custom-link {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

    .custom-link:hover {
        text-decoration: underline;
    }

.lucide-icon {
    stroke-width: 1.5; /* Adjust line thickness */
    fill: none; /* No fill by default */
}

.parallax-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60vh;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .parallax-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */

.parallax-content {
    position: relative;
    z-index: 1; /* Content above the background */
    text-align: center; /* Center content */
    color: white; /* Ensure text is readable */
    padding: 20px; /* Optional: Add padding inside the content box */
    border-radius: 8px; /* Optional: Styling enhancement */
    max-width: 1000px; /* Fixed width for content */
    width: 100%; /* Ensure responsiveness */
    margin: 0 auto; /* Center content horizontally */
    box-sizing: border-box; /* Include padding in the width */
}

    .parallax-content h1 {
        font-size: 3.5rem;
        line-height: 1.2em;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .parallax-content p {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.5em;
        color: #ffffff;
    }

.parallax-button {
    display: inline-block;
    padding: 10px 20px;
    background: #008cba;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

    .parallax-button:hover {
        background: #005f7f;
    }

.full-width-images-section {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Larger left image by default */
    gap: 25px; /* Padding between images */
    width: 100%;
    padding: 25px; /* Padding around the section */
    box-sizing: border-box;
}

    .full-width-images-section.reverse-layout {
        grid-template-columns: 1fr 2fr; /* Larger right image */
    }

.image-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.image-content {
    position: absolute;
    bottom: 25px; /* Position content at the bottom with padding */
    left: 25px;
    right: 25px;
    color: white;
    text-align: left;
}

    .image-content h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .image-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

.image-button {
    display: inline-block;
    padding: 10px 20px;
    background: #008cba;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

    .image-button:hover {
        background: #005f7f;
    }


/* Subscription Cards */
.subscription-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color-light-gray);
    border-radius: 0px;
}

.subscription-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 30px 20px;
}

.subscription-card .subscribe-button {
    margin-top: 20px;
}

/* Toggle Buttons */
.subscription-toggle .toggle-btn {
    background-color: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 0;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.subscription-toggle .toggle-btn.active,
.subscription-toggle .toggle-btn:hover {
    background-color: var(--color-blue);
    color: #fff;
}

/* ===== Modern FAQ / Accordion ===== */

.faq-shell {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,119,202,.12);
    color: var(--brand-blue);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.accordion-modern .accordion-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
}

.accordion-modern .accordion-button {
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    padding: 16px 18px;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: rgba(0,135,77,.06);
    color: var(--ink);
    box-shadow: none;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
}

.accordion-modern .accordion-body {
    color: var(--muted);
    padding: 16px 18px 18px;
}


/* ===========================
   Landing v2 (append at end)
   =========================== */

:root {
    --brand-green: #00874d;
    --brand-blue: #1a77ca;
    --brand-accent: #f3b24a;
    --ink: #0f172a;
    --muted: #475569;
    --surface: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(2, 8, 23, .12);
    --shadow-lg: 0 20px 60px rgba(2, 8, 23, .18);
    --radius: 18px;
}

html, body {
    background: #fff;
}

body {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
}

.page {
    overflow-x: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 9999;
    background: #fff;
    color: #000;
    padding: 10px 12px;
    border-radius: 10px;
}

/* HERO */
.site-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 20% 20%, rgba(26,119,202,.25), transparent 60%), radial-gradient(900px 500px at 80% 10%, rgba(0,135,77,.22), transparent 55%), linear-gradient(180deg, rgba(2,6,23,.72), rgba(2,6,23,.55));
}

.hero-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2,6,23,.20);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 60px;
}

.hero-eyebrow {
    color: rgba(255,255,255,.85);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 14px;
}

.hero-title {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: clamp(2.2rem, 3.6vw, 4.0rem);
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero-subtitle {
    color: rgba(255,255,255,.85);
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    max-width: 56ch;
}

.hero-actions .btn {
    border-radius: 999px;
    padding: 12px 18px;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    border: none;
    color: #fff;
    box-shadow: var(--shadow);
}

    .btn-brand:hover {
        filter: brightness(1.03);
        transform: translateY(-1px);
    }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink);
}

    .btn-ghost:hover {
        background: #fff;
        box-shadow: var(--shadow);
    }

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-weight: 600;
}

    .badge-hero svg {
        width: 16px;
        height: 16px;
    }

/* Sections */
.landing-section {
    padding: 0;
}

.bg-surface {
    background: var(--surface);
}

.bg-gradient {
    background: radial-gradient(900px 500px at 20% 30%, rgba(26,119,202,.30), transparent 60%), radial-gradient(900px 500px at 80% 10%, rgba(0,135,77,.28), transparent 55%), linear-gradient(180deg, #0b1220, #0b1020);
}

/* Panels / cards */
.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
}

.panel-image {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.10);
}

.panel-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.78));
}

.panel-image-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.kicker {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: .8rem;
    color: rgba(255,255,255,.85);
}

.checklist {
    list-style: none;
    padding-left: 0;
}

    .checklist li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

        .checklist li:last-child {
            border-bottom: none;
        }

.mini {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
}

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,119,202,.10);
    color: var(--brand-blue);
}

    .mini-icon svg {
        width: 20px;
        height: 20px;
    }

.mini-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 12px 0 6px;
}

.mini-text {
    margin: 0;
    color: var(--muted);
}

/* Card v2 */
.card-v2 {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
}

.icon-chip {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,135,77,.10);
    color: var(--brand-green);
}

    .icon-chip svg {
        width: 22px;
        height: 22px;
    }

/* Feature */
.feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243,178,74,.16);
    color: #b96c00;
}

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

/* Steps */
.step-num {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}

/* Form */
.form-v2 {
    background: transparent;
    padding: 0;
    border: none;
}

.honeypot {
    display: none;
}

/* Accordion */
.accordion-v2 .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    margin-bottom: 10px;
}

.accordion-v2 .accordion-button {
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 700;
}

    .accordion-v2 .accordion-button:focus {
        box-shadow: none;
    }

.accordion-v2 .accordion-body {
    color: rgba(255,255,255,.80);
}

/* Footer */
.site-footer {
    background: #071025;
    color: #fff;
}

.footer-muted {
    color: rgba(255,255,255,.70);
}

/* Tiny lucide in beta list */
svg.tiny {
    width: 16px;
    height: 16px;
}

/* Mobile hero height */
@media (max-width: 768px) {
    .site-hero {
        min-height: 72vh;
    }

    .hero-content {
        padding-top: 80px;
    }
}
/* Modern hover / depth */
.panel, .card-v2 {
    transition: transform .18s ease, box-shadow .18s ease;
}

.panel:hover, .card-v2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-title {
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.78));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===========================
   Landing v2 Updated (Overridden)
   =========================== */

:root {
    --brand-green: #00874d;
    --brand-blue: #1a77ca;
    --brand-accent: #f3b24a;
    --ink: #0f172a;
    --muted: #64748b;
    --surface: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(26, 119, 202, 0.3);
    --radius: 16px;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
    background: #fff;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

