/* ==========================================================
   PRIMEVAULT DESIGN SYSTEM
   Global Styles
========================================================== */

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================================================
   HTML
========================================================== */

html{
    scroll-behavior:smooth;
}

/* ==========================================================
   BODY
========================================================== */

body{
    background:var(--background);
    color:var(--text-primary);
    overflow-x:hidden;
    min-height:100vh;
}

/* ==========================================================
   IMAGES
========================================================== */

img{
    display:block;
    width:100%;
    max-width:100%;
}

/* ==========================================================
   LINKS
========================================================== */

a{
    text-decoration:none;
    color:inherit;
}

/* ==========================================================
   LISTS
========================================================== */

ul,
ol{
    list-style:none;
}

/* ==========================================================
   BUTTONS
========================================================== */

button{
    border:none;
    outline:none;
    cursor:pointer;
    background:none;
}

/* ==========================================================
   INPUTS
========================================================== */

input,
textarea,
select{

    width:100%;

    outline:none;

    border:1px solid var(--border);

    background:#fff;

    color:var(--text-primary);

}

/* ==========================================================
   TEXTAREA
========================================================== */

textarea{
    resize:none;
}

/* ==========================================================
   TABLES
========================================================== */

table{
    width:100%;
    border-collapse:collapse;
}

/* ==========================================================
   IFRAME
========================================================== */

iframe{
    border:none;
}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:92%;

    max-width:var(--container-width);

    margin:auto;

}

/* ==========================================================
   SECTION
========================================================== */

section{

    padding:var(--section-padding) 0;

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

/* ==========================================================
   TEXT SELECTION
========================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}

html,
body{
    overflow-x:hidden;
    max-width:100%;
 
}

.container{
    width:min(92%, 1280px);
    margin:auto;
    overflow:hidden;
}

img{
    max-width:100%;
    height:auto;
}

.plans-grid,
.benefits-grid,
.timeline{
    min-width:0;
}

.plan-card,
.benefit-card,
.timeline-item{
    min-width:0;
}

.comparison-wrapper{

    width:100%;

    max-width:100%;

    overflow-x:auto;

    overflow-y:hidden;

    -webkit-overflow-scrolling:touch;

}

.comparison-table{

    min-width:800px;

}


/* Prevent iPhone Safari from zooming on form fields */
input,
textarea,
select,
button {
    font-size: 16px;
}