@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* GLOBAL RESET & BASE */
:root {
    --ysee-primary: #FF6B6B;
    --ysee-secondary: #FFE5D9;
    --ysee-text: #2D2D2A;
    --ysee-text-muted: #4B5563;
    --ysee-white: #FFFFFF;

    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
}

/* COMMON WP/ELEMENTOR RESETS */
img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.is-layout-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-grid {
    display: grid;
}

.is-layout-flow>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif !important;
    color: var(--ysee-text);
    line-height: 1.6;
    padding-top: 80px;
}

a {
    text-decoration: none !important;
    box-shadow: none !important;
    border: none !important;
    transition: color 0.2s, background-color 0.2s, transform 0.3s ease;
}

/* NAVIGATION BAR */
.ysee-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.ysee-nav-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ysee-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.ysee-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ysee-nav-links a,
.ysee-dropbtn {
    color: var(--ysee-text-muted);
    font-weight: 500;
    font-size: 15px;
    padding: 25px 0;
    cursor: pointer;
    background: none;
    border: none;
}

.ysee-nav-links a:hover,
.ysee-dropdown:hover .ysee-dropbtn {
    color: var(--ysee-primary);
}

.ysee-dropdown {
    position: relative;
    display: inline-block;
}

.ysee-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--ysee-white);
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1001;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border: 1px solid var(--ysee-secondary);
}

.ysee-dropdown-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.ysee-dropdown-content a {
    color: var(--ysee-text-muted);
    padding: 12px 20px;
    display: block;
    font-size: 14px;
}

.ysee-dropdown-content a:hover {
    background-color: var(--ysee-secondary);
    color: var(--ysee-primary);
}

.ysee-dropdown:hover .ysee-dropdown-content {
    display: block;
    animation: yseeFadeIn 0.2s ease-out;
}

.ysee-nav-login {
    color: #6B6B6B !important;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid #E8E1D3;
}

.ysee-nav-login:hover {
    color: var(--ysee-primary) !important;
    border-color: var(--ysee-primary);
}

.ysee-nav-cta {
    background-color: var(--ysee-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--ysee-primary);
}

.ysee-nav-cta:hover {
    background-color: transparent;
    color: var(--ysee-primary) !important;
    transform: translateY(-2px);
}

@keyframes yseeFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .ysee-nav-links {
        display: none;
    }
}

/* PRIMARY BUTTONS */
.ysee-btn-primary {
    background-color: var(--ysee-primary);
    color: white !important;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.ysee-btn-primary:hover {
    transform: translateY(-3px);
    background-color: #E63946;
}

/* FOOTER */
.ysee-footer-section {
    background-color: var(--ysee-text) !important;
    color: var(--ysee-white) !important;
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
}

.ysee-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ysee-footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--ysee-primary) !important;
    margin-bottom: 10px;
    display: block;
}

.ysee-footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
}

.ysee-footer-link:hover {
    color: var(--ysee-primary) !important;
}

.ysee-copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* CONSOLIDATED STYLES FROM REFINEMENT */
img:is([sizes=auto i], [sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px
}

@media screen {
    html {
        margin-top: 32px !important;
    }
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 46px !important;
    }
}

@media print {
    #wpadminbar {
        display: none;
    }
}

.admin-bar {
    position: inherit !important;
    top: auto !important;
}

.admin-bar .goog-te-banner-frame {
    top: 32px !important
}

@media screen and (max-width: 782px) {
    .admin-bar .goog-te-banner-frame {
        top: 46px !important;
    }
}

@media screen and (max-width: 480px) {
    .admin-bar .goog-te-banner-frame {
        position: absolute;
    }
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.jetpack-sharing-buttons__services-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    list-style-type: none;
    margin: 5px;
    padding: 0
}

.jetpack-sharing-buttons__services-list.has-small-icon-size {
    font-size: 12px
}

.jetpack-sharing-buttons__services-list.has-normal-icon-size {
    font-size: 16px
}

.jetpack-sharing-buttons__services-list.has-large-icon-size {
    font-size: 24px
}

.jetpack-sharing-buttons__services-list.has-huge-icon-size {
    font-size: 36px
}

@media print {
    .jetpack-sharing-buttons__services-list {
        display: none !important
    }
}

.editor-styles-wrapper .wp-block-jetpack-sharing-buttons {
    gap: 0;
    padding-inline-start: 0
}

ul.jetpack-sharing-buttons__services-list.has-background {
    padding: 1.25em 2.375em
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;
    --wp--preset--font-family--alegreya: Alegreya, serif;
    --wp--preset--font-family--arvo: Arvo, serif;
    --wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;
    --wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;
    --wp--preset--font-family--cabin: Cabin, sans-serif;
    --wp--preset--font-family--chivo: Chivo, sans-serif;
    --wp--preset--font-family--commissioner: Commissioner, sans-serif;
    --wp--preset--font-family--cormorant: Cormorant, serif;
    --wp--preset--font-family--courier-prime: 'Courier Prime', monospace;
    --wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;
    --wp--preset--font-family--dm-mono: 'DM Mono', monospace;
    --wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;
    --wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;
    --wp--preset--font-family--domine: Domine, serif;
    --wp--preset--font-family--eb-garamond: 'EB Garamond', serif;
    --wp--preset--font-family--epilogue: Epilogue, sans-serif;
    --wp--preset--font-family--fahkwang: Fahkwang, sans-serif;
    --wp--preset--font-family--figtree: Figtree, sans-serif;
    --wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;
    --wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;
    --wp--preset--font-family--fraunces: Fraunces, serif;
    --wp--preset--font-family--gabarito: Gabarito, system-ui;
    --wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;
    --wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;
    --wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;
    --wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;
    --wp--preset--font-family--inter: Inter, sans-serif;
    --wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;
    --wp--preset--font-family--jost: Jost, sans-serif;
    --wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;
    --wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;
    --wp--preset--font-family--literata: Literata, serif;
    --wp--preset--font-family--lora: Lora, serif;
    --wp--preset--font-family--merriweather: Merriweather, serif;
    --wp--preset--font-family--montserrat: Montserrat, sans-serif;
    --wp--preset--font-family--newsreader: Newsreader, serif;
    --wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;
    --wp--preset--font-family--nunito: Nunito, sans-serif;
    --wp--preset--font-family--open-sans: 'Open Sans', sans-serif;
    --wp--preset--font-family--overpass: Overpass, sans-serif;
    --wp--preset--font-family--pt-serif: 'PT Serif', serif;
    --wp--preset--font-family--petrona: Petrona, serif;
    --wp--preset--font-family--piazzolla: Piazzolla, serif;
    --wp--preset--font-family--playfair-display: 'Playfair Display', serif;
    --wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;
    --wp--preset--font-family--poppins: Poppins, sans-serif;
    --wp--preset--font-family--raleway: Raleway, sans-serif;
    --wp--preset--font-family--roboto: Roboto, sans-serif;
    --wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;
    --wp--preset--font-family--rubik: Rubik, sans-serif;
    --wp--preset--font-family--rufina: Rufina, serif;
    --wp--preset--font-family--sora: Sora, sans-serif;
    --wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;
    --wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;
    --wp--preset--font-family--space-mono: 'Space Mono', monospace;
    --wp--preset--font-family--syne: Syne, sans-serif;
    --wp--preset--font-family--texturina: Texturina, serif;
    --wp--preset--font-family--urbanist: Urbanist, sans-serif;
    --wp--preset--font-family--work-sans: 'Work Sans', sans-serif;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
    --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);
}

:root {
    --wp--style--global--content-size: 800px;
    --wp--style--global--wide-size: 1200px;
}

:where(body) {
    margin: 0;
}

.wp-site-blocks>.alignleft {
    float: left;
    margin-right: 2em;
}

.wp-site-blocks>.alignright {
    float: right;
    margin-left: 2em;
}

.wp-site-blocks>.aligncenter {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

:where(.wp-site-blocks)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:where(.wp-site-blocks)> :first-child {
    margin-block-start: 0;
}

:where(.wp-site-blocks)> :last-child {
    margin-block-end: 0;
}

:root {
    --wp--style--block-gap: 24px;
}

:root :where(.is-layout-flow)> :first-child {
    margin-block-start: 0;
}

:root :where(.is-layout-flow)> :last-child {
    margin-block-end: 0;
}

:root :where(.is-layout-flow)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:root :where(.is-layout-constrained)> :first-child {
    margin-block-start: 0;
}

:root :where(.is-layout-constrained)> :last-child {
    margin-block-end: 0;
}

:root :where(.is-layout-constrained)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:root :where(.is-layout-flex) {
    gap: 24px;
}

:root :where(.is-layout-grid) {
    gap: 24px;
}

.is-layout-flow>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

.is-layout-flow>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

.is-layout-flow>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

.is-layout-constrained>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

.is-layout-constrained>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained>.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex> :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid> :is(*, div) {
    margin: 0;
}

body {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

:root :where(.wp-element-button, .wp-block-button__link) {
    background-color: #32373c;
    border-width: 0;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    padding-top: calc(0.667em + 2px);
    padding-right: calc(1.333em + 2px);
    padding-bottom: calc(0.667em + 2px);
    padding-left: calc(1.333em + 2px);
    text-decoration: none;
    text-transform: inherit;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.has-albert-sans-font-family {
    font-family: var(--wp--preset--font-family--albert-sans) !important;
}

.has-alegreya-font-family {
    font-family: var(--wp--preset--font-family--alegreya) !important;
}

.has-arvo-font-family {
    font-family: var(--wp--preset--font-family--arvo) !important;
}

.has-bodoni-moda-font-family {
    font-family: var(--wp--preset--font-family--bodoni-moda) !important;
}

.has-bricolage-grotesque-font-family {
    font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;
}

.has-cabin-font-family {
    font-family: var(--wp--preset--font-family--cabin) !important;
}

.has-chivo-font-family {
    font-family: var(--wp--preset--font-family--chivo) !important;
}

.has-commissioner-font-family {
    font-family: var(--wp--preset--font-family--commissioner) !important;
}

.has-cormorant-font-family {
    font-family: var(--wp--preset--font-family--cormorant) !important;
}

.has-courier-prime-font-family {
    font-family: var(--wp--preset--font-family--courier-prime) !important;
}

.has-crimson-pro-font-family {
    font-family: var(--wp--preset--font-family--crimson-pro) !important;
}

.has-dm-mono-font-family {
    font-family: var(--wp--preset--font-family--dm-mono) !important;
}

.has-dm-sans-font-family {
    font-family: var(--wp--preset--font-family--dm-sans) !important;
}

.has-dm-serif-display-font-family {
    font-family: var(--wp--preset--font-family--dm-serif-display) !important;
}

.has-domine-font-family {
    font-family: var(--wp--preset--font-family--domine) !important;
}

.has-eb-garamond-font-family {
    font-family: var(--wp--preset--font-family--eb-garamond) !important;
}

.has-epilogue-font-family {
    font-family: var(--wp--preset--font-family--epilogue) !important;
}

.has-fahkwang-font-family {
    font-family: var(--wp--preset--font-family--fahkwang) !important;
}

.has-figtree-font-family {
    font-family: var(--wp--preset--font-family--figtree) !important;
}

.has-fira-sans-font-family {
    font-family: var(--wp--preset--font-family--fira-sans) !important;
}

.has-fjalla-one-font-family {
    font-family: var(--wp--preset--font-family--fjalla-one) !important;
}

.has-fraunces-font-family {
    font-family: var(--wp--preset--font-family--fraunces) !important;
}

.has-gabarito-font-family {
    font-family: var(--wp--preset--font-family--gabarito) !important;
}

.has-ibm-plex-mono-font-family {
    font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;
}

.has-ibm-plex-sans-font-family {
    font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;
}

.has-ibarra-real-nova-font-family {
    font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;
}

.has-instrument-serif-font-family {
    font-family: var(--wp--preset--font-family--instrument-serif) !important;
}

.has-inter-font-family {
    font-family: var(--wp--preset--font-family--inter) !important;
}

.has-josefin-sans-font-family {
    font-family: var(--wp--preset--font-family--josefin-sans) !important;
}

.has-jost-font-family {
    font-family: var(--wp--preset--font-family--jost) !important;
}

.has-libre-baskerville-font-family {
    font-family: var(--wp--preset--font-family--libre-baskerville) !important;
}

.has-libre-franklin-font-family {
    font-family: var(--wp--preset--font-family--libre-franklin) !important;
}

.has-literata-font-family {
    font-family: var(--wp--preset--font-family--literata) !important;
}

.has-lora-font-family {
    font-family: var(--wp--preset--font-family--lora) !important;
}

.has-merriweather-font-family {
    font-family: var(--wp--preset--font-family--merriweather) !important;
}

.has-montserrat-font-family {
    font-family: var(--wp--preset--font-family--montserrat) !important;
}

.has-newsreader-font-family {
    font-family: var(--wp--preset--font-family--newsreader) !important;
}

.has-noto-sans-mono-font-family {
    font-family: var(--wp--preset--font-family--noto-sans-mono) !important;
}

.has-nunito-font-family {
    font-family: var(--wp--preset--font-family--nunito) !important;
}

.has-open-sans-font-family {
    font-family: var(--wp--preset--font-family--open-sans) !important;
}

.has-overpass-font-family {
    font-family: var(--wp--preset--font-family--overpass) !important;
}

.has-pt-serif-font-family {
    font-family: var(--wp--preset--font-family--pt-serif) !important;
}

.has-petrona-font-family {
    font-family: var(--wp--preset--font-family--petrona) !important;
}

.has-piazzolla-font-family {
    font-family: var(--wp--preset--font-family--piazzolla) !important;
}

.has-playfair-display-font-family {
    font-family: var(--wp--preset--font-family--playfair-display) !important;
}

.has-plus-jakarta-sans-font-family {
    font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;
}

.has-poppins-font-family {
    font-family: var(--wp--preset--font-family--poppins) !important;
}

.has-raleway-font-family {
    font-family: var(--wp--preset--font-family--raleway) !important;
}

.has-roboto-font-family {
    font-family: var(--wp--preset--font-family--roboto) !important;
}

.has-roboto-slab-font-family {
    font-family: var(--wp--preset--font-family--roboto-slab) !important;
}

.has-rubik-font-family {
    font-family: var(--wp--preset--font-family--rubik) !important;
}

.has-rufina-font-family {
    font-family: var(--wp--preset--font-family--rufina) !important;
}

.has-sora-font-family {
    font-family: var(--wp--preset--font-family--sora) !important;
}

.has-source-sans-3-font-family {
    font-family: var(--wp--preset--font-family--source-sans-3) !important;
}

.has-source-serif-4-font-family {
    font-family: var(--wp--preset--font-family--source-serif-4) !important;
}

.has-space-mono-font-family {
    font-family: var(--wp--preset--font-family--space-mono) !important;
}

.has-syne-font-family {
    font-family: var(--wp--preset--font-family--syne) !important;
}

.has-texturina-font-family {
    font-family: var(--wp--preset--font-family--texturina) !important;
}

.has-urbanist-font-family {
    font-family: var(--wp--preset--font-family--urbanist) !important;
}

.has-work-sans-font-family {
    font-family: var(--wp--preset--font-family--work-sans) !important;
}

:root :where(.wp-block-icon svg) {
    width: 24px;
}

:root :where(.wp-block-pullquote) {
    font-size: 1.5em;
    line-height: 1.6;
}

#wpadminbar.mobile .quicklinks li:not(#wpwrap.wp-responsive-open #wp-admin-bar-menu-toggle) .ab-icon::before,
#wpadminbar.mobile .quicklinks li:not(#wpwrap.wp-responsive-open #wp-admin-bar-menu-toggle) .ab-item::before {
    color: #a7aaad !important;
}

:where(#wpadminbar .ab-icon) {
    color: #a7aaad;
}

#jp-post-flair {
    padding-top: .5em
}

#content div.sharedaddy,
#main div.sharedaddy,
div.sharedaddy {
    clear: both
}

div.sharedaddy h3.sd-title {
    display: inline-block;
    font-size: 9pt;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1em
}

div.sharedaddy h3.sd-title:before {
    border-top: 1px solid #dcdcde;
    content: "";
    display: block;
    margin-bottom: 1em;
    min-width: 30px;
    width: 100%
}

div.jetpack-likes-widget-wrapper {
    min-height: 50px;
    position: relative;
    width: 100%
}

div.jetpack-likes-widget-wrapper .sd-link-color {
    font-size: 12px
}

div.jetpack-comment-likes-widget-wrapper {
    min-height: 31px;
    position: relative;
    width: 100%
}

div.jetpack-comment-likes-widget-wrapper iframe {
    margin-bottom: 0
}

#likes-other-gravatars {
    background-color: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    box-shadow: none;
    display: none;
    height: auto;
    max-height: 240px;
    min-width: 220px;
    overflow: auto;
    padding: 9px 12px 10px;
    position: absolute;
    z-index: 1000
}

#likes-other-gravatars * {
    line-height: normal
}

#likes-other-gravatars .likes-text {
    color: #101517;
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 8px
}

#likes-other-gravatars li,
#likes-other-gravatars ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-indent: 0
}

#likes-other-gravatars li:before {
    content: ""
}

#likes-other-gravatars ul.wpl-avatars {
    display: block;
    max-height: 190px;
    overflow: auto
}

#likes-other-gravatars ul.wpl-avatars li {
    float: none;
    height: 28px;
    margin: 0 0 4px;
    width: 196px
}

#likes-other-gravatars ul.wpl-avatars li a {
    align-items: center;
    border-bottom: none !important;
    display: flex;
    gap: 8px;
    margin: 0 2px 0 0;
    text-decoration: none
}

#likes-other-gravatars ul.wpl-avatars li a span {
    color: #2c3338;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#likes-other-gravatars ul.wpl-avatars li a img {
    background: none;
    border: none;
    border-radius: 50%;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 1px !important;
    position: static
}

div.sd-box {
    border-top: 1px solid #00000021
}

.jetpack-likes-widget-loaded iframe,
.jetpack-likes-widget-loading .likes-widget-placeholder,
.jetpack-likes-widget-unloaded .likes-widget-placeholder {
    display: block
}

.jetpack-likes-widget-loaded .likes-widget-placeholder,
.jetpack-likes-widget-loading iframe,
.jetpack-likes-widget-unloaded iframe {
    display: none
}

.comment-likes-widget,
.entry-content .post-likes-widget,
.post-likes-widget {
    border-width: 0;
    margin: 0
}

.comment-likes-widget-placeholder,
.post-likes-widget-placeholder {
    border-width: 0;
    margin: 0;
    position: relative
}

.comment-likes-widget-placeholder {
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    height: 18px;
    position: absolute
}

.comment-likes-widget-placeholder:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%232ea2cc' d='m12 2 2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    color: #2ea2cc;
    content: "";
    display: inline-block;
    height: 16px;
    padding-right: 5px;
    position: relative;
    top: 3px;
    width: 16px
}

.post-likes-widget-placeholder .button {
    display: none
}

.comment-likes-widget-placeholder .loading,
.post-likes-widget-placeholder .loading {
    color: #999;
    font-size: 12px
}

.comment-likes-widget-placeholder .loading {
    align-self: center;
    color: #4e4e4e;
    margin-top: 4px;
    padding-left: 5px
}

div.sharedaddy.sd-like-enabled .sd-like h3 {
    display: none
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
    float: none;
    position: absolute;
    top: 0;
    width: 100%
}

.comment-likes-widget {
    width: 100%
}

.cs-rating,
.pd-rating {
    display: block !important
}

.sd-gplus .sd-title {
    display: none
}

@media print {
    .jetpack-likes-widget-wrapper {
        display: none
    }
}

:root {
    --font-headings: unset;
    --font-base: unset;
    --font-headings-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-base-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
    background-image: none !important;
}

@media screen and (max-height: 1024px) {

    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

@media screen and (max-height: 640px) {

    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

#wpadminbar .quicklinks li#wp-admin-bar-stats {
    height: 32px;
}

#wpadminbar .quicklinks li#wp-admin-bar-stats a {
    height: 32px;
    padding: 0;
}

#wpadminbar .quicklinks li#wp-admin-bar-stats a div {
    height: 32px;
    width: 95px;
    overflow: hidden;
    margin: 0 10px;
}

#wpadminbar .quicklinks li#wp-admin-bar-stats a:hover div {
    width: auto;
    margin: 0 8px 0 10px;
}

#wpadminbar .quicklinks li#wp-admin-bar-stats a img {
    height: 24px;
    margin: 4px 0;
    max-width: none;
    border: none;
}

._02e2af5803bf5bda__grid-container {
    aspect-ratio: 1;
    border: 1px solid #0000;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    outline: none
}

.c421f8ed08c23077__grid-row {
    box-sizing: border-box;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(3, 1fr)
}

._3af769f755097fdb__cell {
    align-items: center;
    appearance: none;
    border: none;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative
}

._37ef12d4fb6d6131__point {
    aspect-ratio: 1;
    border: 3px solid;
    box-sizing: border-box;
    color: var(--wp-components-color-gray-400, #ccc);
    contain: strict;
    display: block;
    margin: auto;
    width: 6px
}

._3af769f755097fdb__cell[data-active-item] ._37ef12d4fb6d6131__point {
    color: var(--wp-components-color-foreground, #1e1e1e);
    transform: scale(1.6666666667)
}

._3af769f755097fdb__cell:not([data-active-item]):hover ._37ef12d4fb6d6131__point {
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

._3af769f755097fdb__cell[data-focus-visible] ._37ef12d4fb6d6131__point {
    outline: 1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline-offset: 1px
}

@media not (prefers-reduced-motion) {
    ._37ef12d4fb6d6131__point {
        transition-duration: .12s;
        transition-property: color, transform;
        transition-timing-function: linear
    }
}

._8f57b8d483c51fbe__circle-root {
    border: 1px solid var(--wp-components-color-gray-600, #949494);
    border-radius: 50%;
    box-sizing: border-box;
    cursor: grab;
    height: 32px;
    overflow: hidden;
    width: 32px
}

._8f57b8d483c51fbe__circle-root:active {
    cursor: grabbing
}

.b1bae984ac10fcc3__circle-indicator-wrapper {
    box-sizing: border-box;
    height: 100%;
    position: relative;
    width: 100%
}

.b1bae984ac10fcc3__circle-indicator-wrapper:focus-visible {
    outline: none
}

._6d2fe0a2cbb31bf0__circle-indicator {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    height: 6px;
    left: 50%;
    position: absolute;
    top: 4px;
    transform: translateX(-50%);
    width: 6px
}

.has-text-align-justify {
    text-align: justify;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    padding-top: 80px;
}

.ysee-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

.ysee-nav-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ysee-logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ysee-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ysee-nav-links a,
.ysee-dropbtn {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 25px 0;
    font-family: 'Inter', sans-serif;
}

.ysee-nav-links a:hover,
.ysee-dropdown:hover .ysee-dropbtn {
    color: #FF6B6B;
}

.ysee-dropdown {
    position: relative;
    display: inline-block;
}

.ysee-dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1001;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border: 1px solid #FFE5D9;
}

.ysee-dropdown-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.ysee-dropdown-content a {
    color: #4B5563;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.ysee-dropdown-content a:hover {
    background-color: #FFE5D9;
    color: #FF6B6B;
}

.ysee-dropdown:hover .ysee-dropdown-content {
    display: block;
    animation: yseeFadeIn 0.2s ease-out;
}

@keyframes yseeFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ysee-nav-cta {
    background-color: #FF6B6B;
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #FF6B6B;
}

.ysee-nav-cta:hover {
    background-color: transparent;
    color: #FF6B6B !important;
    transform: translateY(-2px);
}

/* ── GLOBAL OVERFLOW FIX (prevent 100vw horizontal scroll) ── */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 900px) {
    .ysee-nav-links { display: none; }
    .ysee-nav-cta { display: none; }
    body.nav-open { overflow: hidden; }
}

/* ── HAMBURGER BUTTON ── */
.ysee-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
    margin-left: auto;
}
.ysee-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2D2D2A;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.ysee-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ysee-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ysee-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) { .ysee-hamburger { display: flex; } }

/* ── MOBILE NAV OVERLAY ── */
.ysee-mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1000;
    padding: 90px 28px 40px;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: none;
}
.ysee-mobile-nav.open { display: flex; }
.ysee-mobile-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #FF6B6B;
    padding: 20px 0 8px;
    display: block;
}
.ysee-mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: #2D2D2A;
    text-decoration: none;
    border-bottom: 1px solid #F3F0EA;
}
.ysee-mobile-nav a:hover { color: #FF6B6B; }
.ysee-mobile-login {
    margin-top: 16px;
    text-align: center;
    background: transparent;
    color: #6B6B6B !important;
    padding: 14px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border: 1.5px solid #E8E1D3 !important;
    border-bottom: 1.5px solid #E8E1D3 !important;
}
.ysee-mobile-login:hover { color: #FF6B6B !important; border-color: #FF6B6B !important; }

.ysee-mobile-cta {
    margin-top: 12px;
    text-align: center;
    background: #FF6B6B;
    color: white !important;
    padding: 16px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-bottom: none !important;
}
.ysee-mobile-cta:hover { background: #E63946; color: white !important; }

/* ── FULL-WIDTH SECTIONS (fix 100vw overflow) ── */
.ysee-full-section {
    position: relative;
    width: 100%;
    left: auto;
    transform: none;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ysee-hero-tagline {
    color: #FF6B6B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.ysee-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #2D2D2A;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-align: center;
}

.ysee-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.ysee-btn-primary {
    background-color: #FF6B6B;
    color: white !important;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    display: inline-block;
}

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

.ysee-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #C44536;
    margin-bottom: 15px;
}

.ysee-step-number {
    background: #FFE5D9;
    color: #C44536;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 20px;
}

@keyframes yseeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.ysee-footer-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ysee-footer-section {
    font-family: 'Inter', sans-serif !important;
    background-color: #2D2D2A !important;
    color: #FFFFFF !important;
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
}

.ysee-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ysee-footer-brand {
    flex: 1;
    min-width: 250px;
}

.ysee-footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.ysee-footer-logo-text {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #FF6B6B !important;
    margin-bottom: 10px;
    display: block;
    text-decoration: none !important;
}

.ysee-footer-tagline {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 300px;
}

.ysee-footer-links {
    flex: 1;
    min-width: 200px;
}

.ysee-footer-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ysee-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ysee-footer-list li {
    margin-bottom: 12px !important;
}

.ysee-footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.3s ease;
}

.ysee-footer-link:hover {
    color: #FF6B6B !important;
}

/* ── RESPONSIVE ADDITIONS ── */

/* Footer stacking on mobile */
@media (max-width: 600px) {
    .ysee-footer-container { flex-direction: column; gap: 24px; }
    .ysee-footer-brand, .ysee-footer-links { min-width: 0; width: 100%; }
}

/* Generic 3-column grid → 1 column on mobile */
@media (max-width: 600px) {
    .ysee-grid-3 { grid-template-columns: 1fr; }
    .ysee-full-section { padding: 50px 20px; }
}

/* Hero title scaling on small phones */
@media (max-width: 480px) {
    .ysee-hero-title { font-size: 28px !important; letter-spacing: -0.3px; }
    .ysee-section-title { font-size: 26px !important; }
    .ysee-about-title { font-size: 28px !important; }
}

/* ── PRICING GRIDS : empilement mobile (toutes les sous-pages) ── */
@media (max-width: 768px) {
    .ysee-pricing-grid {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    .ysee-price-card {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.ysee-footer-contact {
    flex: 1;
    min-width: 250px;
}

.ysee-contact-btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.ysee-contact-btn:hover {
    background-color: #FF6B6B !important;
    color: #FFFFFF !important;
}

.ysee-social-icons {
    display: flex;
    gap: 15px;
}

.ysee-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ysee-social-link:hover {
    background-color: #FF6B6B !important;
    transform: translateY(-2px);
}

.ysee-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ysee-footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 768px) {
    .ysee-footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .ysee-footer-brand,
    .ysee-footer-links,
    .ysee-footer-contact {
        min-width: 100%;
    }
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    box-shadow: none !important;
}

.ysee-full-section {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ysee-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.ysee-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.ysee-faq-item {
    border: 1px solid #EEE;
    border-radius: 12px;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.ysee-faq-question {
    list-style: none;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #2D2D2A;
}

.ysee-faq-question::-webkit-details-marker {
    display: none;
}

.ysee-faq-icon {
    color: #FF6B6B;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.ysee-faq-answer {
    padding: 0 25px 25px 25px;
    color: #4A4A48;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}

details[open] .ysee-faq-answer {
    display: block;
    animation: yseeFadeIn 0.4s ease-out;
}

details[open] .ysee-faq-icon {
    transform: rotate(45deg);
}

details[open] .ysee-faq-item {
    background: #FFFFFF;
    border-color: #FF6B6B;
}

.ysee-cta-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}

.ysee-cta-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.ysee-cta-button:hover {
    background-color: #E63946;
    box-shadow: 0 6px 12px rgba(230, 57, 70, 0.4);
    transform: translateY(-2px);
}

.ysee-cta-button:hover .ysee-cta-icon {
    transform: translateX(5px);
}

.ysee-cta-button:active {
    background-color: #D32F2F;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .ysee-cta-button {
        font-size: 1rem;
        padding: 14px 24px;
        width: 90%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.ysee-cta-button {

    background-color: #F47C6E;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;


    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none !important;

    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;


    box-shadow: 0 4px 6px rgba(244, 124, 110, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;


    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

/* --- NEW FIXES FOR HOME --- */

/* Full width breakout trick to bypass Elementor wrappers */
.ysee-full-width {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
}

/* Ensure inner content still stays centered and constrained */
.ysee-trust-header,
.ysee-trust-grid,
.ysee-about-container,
.ysee-hero-container,
.ysee-steps-section .ysee-header,
.ysee-steps-section .ysee-grid,
.ysee-founder-container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Stats Section */
.ysee-stats-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2A 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.ysee-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.ysee-stat-item {
    flex: 1;
    min-width: 150px;
}

.ysee-stat-val {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #FF6B6B;
}

.ysee-stat-desc {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

/* Centering Payment Buttons */
.ysee-price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ysee-plan-cta {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
}

/* Halos / Glows on CTAs */
@keyframes yseeGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.4);
    }
}

.ysee-btn-primary,
.ysee-cta-button,
.ysee-nav-cta,
.ysee-plan-cta[href*="stripe"] {
    animation: yseeGlow 3s infinite alternate;
}

.ysee-plan-cta,
.ysee-hero-btn,
.ysee-cta-button,
.ysee-nav-cta {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.ysee-plan-cta:hover,
.ysee-hero-btn:hover,
.ysee-cta-button:hover,
.ysee-nav-cta:hover {
    transform: translateY(-2px);
}


/* --- PREMIUM GLOBAL LAYOUT & HALOS --- */

body,
html {
    overflow-x: hidden;
    /* Avoid horizontal scroll caused by Elementor breakouts */
}

/* Premium Button Halos using Filter instead of box-shadow to overcome overrides */
@keyframes yseePremiumGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.9));
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.4));
    }
}

.ysee-btn-primary,
.ysee-cta-button,
.ysee-nav-cta,
.ysee-plan-cta[href*="stripe"],
.ysee-hero-btn {
    animation: yseePremiumGlow 3s infinite alternate !important;
    text-transform: none;
    letter-spacing: 0.3px;
    border: none !important;
}

/* Removing the old glow if any existed */
.ysee-plan-cta,
.ysee-hero-btn,
.ysee-cta-button,
.ysee-nav-cta {
    box-shadow: none !important;
}

/* Global Padding enhancements for more breathing room */
.ysee-full-width {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.ysee-stats-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Upgrading the Hero background to a more premium multi-color gradient */
.ysee-hero-revisited {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
    background: radial-gradient(circle at top right, #FFF2EC 0%, #FFFFFF 50%, #FFE9E0 100%) !important;
}

/* Making fonts cleaner */
h1,
h2,
h3 {
    letter-spacing: -0.5px;
}

.ysee-hero-title {
    font-size: 58px !important;
    line-height: 1.15 !important;
}

/* Trust Section cleaner background */
.ysee-trust-section {
    background: #FAFAFA !important;
    border-top: none !important;
}


/* --- PREMIUM GLOBAL UPGRADES FOR ALL SUBPAGES --- */

/* Fix horizontal scroll everywhere */
body,
html {
    overflow-x: hidden !important;
}

/* Enforce the new premium paddings to all sections */
.ysee-full-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Target the HERO section (which is the very first section in subpages) */
.ysee-premium-hero {
    padding-top: 150px !important;
    padding-bottom: 120px !important;
    background: radial-gradient(circle at top right, #FFF2EC 0%, #FFFFFF 50%, #FFE9E0 100%) !important;
}

/* Refine the typography of main titles to look sleeker */
.ysee-hero-title,
h1 {
    font-size: 58px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
}

.ysee-section-title,
h2 {
    font-size: 44px !important;
    letter-spacing: -0.5px !important;
}

@media (max-width: 900px) {

    .ysee-hero-title,
    h1 {
        font-size: 42px !important;
    }

    .ysee-section-title,
    h2 {
        font-size: 32px !important;
    }
}

/* Give more breathing room to sub-titles under section titles */
.ysee-section-subtitle {
    margin-bottom: 60px !important;
    font-size: 20px !important;
}

/* Modernize background colors that were a bit too flat */
.ysee-full-section[style*="background-color: #FFF8F0"],
.ysee-full-section[style*="background: #FFF8F0"] {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFF8F0 100%) !important;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL MOBILE OVERFLOW FIXES
   Corrige le trick 100vw qui cause un scroll horizontal
   sur mobile et les éléments absolus qui débordent
   ═══════════════════════════════════════════════════════ */

/* Toutes les images restent dans leur conteneur */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    /* Neutralise le breakout 100vw sur .ysee-full-section */
    .ysee-full-section {
        width: 100% !important;
        left: auto !important;
        transform: none !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        box-sizing: border-box !important;
    }

    /* Neutralise le breakout 100vw sur .ysee-full-width */
    .ysee-full-width {
        width: 100% !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        box-sizing: border-box !important;
    }

    /* Éléments flottants / absolus qui dépassent à droite */
    .ysee-floating-proof {
        display: none;
    }

    .ysee-doc-badge {
        right: 10px !important;
        top: 10px !important;
        transform: rotate(5deg) !important;
    }

    .ysee-doc-card::after,
    .ysee-doc-card::before {
        right: -8px !important;
        bottom: -8px !important;
    }

    /* Hero premium : réduire padding excessif */
    .ysee-premium-hero {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    /* Section titles */
    .ysee-hero-title,
    h1 {
        font-size: 32px !important;
        letter-spacing: -0.3px !important;
    }

    .ysee-section-title,
    h2 {
        font-size: 26px !important;
    }

    /* Sous-pages : sections avec breakout 100vw spécifiques */
    .ysee-comparison-section,
    .ysee-founder-section,
    .ysee-pricing-pro-section,
    .ysee-faq-section-lycee {
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        box-sizing: border-box !important;
    }
}