/* ============================================
   LEANKEEP - LANDING PAGE CSS
   Paleta: Carbono (#1E1E1E) predominante
   CTAs: Laranja (#F38A00)
   Mobile-First Approach
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('../fonts/fa-solid-900.woff2') format('woff2'),
         url('../fonts/fa-solid-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--color-carbon);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
}

@media (max-width: 1023px) {
    h2 {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }

    p,
    li {
        font-size: 14px;
        line-height: 14px;
    }

    .section,
    .pain-points,
    .flow-block,
    .pricing-strip,
    .intelligence-cta,
    .testimonials,
    .final-cta,
    .cta-footer {
        padding: 40px 0;
    }
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   CSS VARIABLES - PALETA LEANKEEP
   ============================================ */

:root {
    /* Cores Principais */
    --color-carbon: #1E1E1E;
    --color-orange: #F38A00;
    --color-orange-hover: #DC7D00;
    --color-orange-dark: #AE6300;

    /* Cores Complementares */
    --color-gray: #E5E5E5;
    --color-gray-medium: #CCCCCC;
    --color-gray-dark: #888888;
    --color-dark-gray: #666666;
    --color-darker-gray: #444444;
    --color-light-orange: #FCE3C2;
    --color-orange-light: #FFB555;

    /* Utility */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-success: #10B981;
    --color-teal: #00A3A3;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0 10px 30px -5px rgba(243, 138, 0, 0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container--narrow {
    max-width: 960px;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
    .container {
        padding: 0 2rem;
    }
}

.skip-link {
    position: absolute;
    top: -999px;
    left: -999px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(-150%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.skip-link:focus {
    top: 0;
    left: 0;
    opacity: 1;
    transform: translateY(0);
}

.text-white {
    color: var(--color-white) !important;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-orange);
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(243, 138, 0, 0.4);
}

.btn--cta {
    position: relative;
    overflow: hidden;
    gap: 0.65rem;
    box-shadow:
        0 0 0 0 rgba(243, 138, 0, 0.35),
        0 10px 30px -5px rgba(243, 138, 0, 0.3);
}

.btn--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--cta::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.35rem;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--cta:hover::before,
.btn--cta:focus::before {
    transform: translateX(100%);
}

.btn--cta:hover,
.btn--cta:focus {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 6px rgba(243, 138, 0, 0.1),
        0 15px 40px -5px rgba(243, 138, 0, 0.4);
}

.btn--cta:active {
    transform: translateY(0);
}

.btn--cta:hover::after,
.btn--cta:focus::after {
    transform: translateX(4px);
}

.btn--cta {
    position: relative;
}

@media (max-width: 767px) {
    .btn--cta {
        width: 100%;
        justify-content: center;
    }
}

.btn--no-arrow {
    gap: 0.25rem;
}

.btn--no-arrow::after {
    display: none;
    margin: 0;
}
.btn--outline {
    background-color: transparent;
    color: var(--color-gray);
    border: 1px solid var(--color-dark-gray);
}

.btn--outline:hover,
.btn--outline:focus {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
}

.btn--nav {
    padding: 0.625rem 1.25rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #1E1E1E;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    padding-left: calc(1rem + env(safe-area-inset-left, 0));
    padding-right: calc(1rem + env(safe-area-inset-right, 0));
}

.navbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.logo__dot {
    color: var(--color-orange);
}

.navbar__menu {
    position: fixed;
    top: 4.75rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0.75rem;
    background-color: rgba(37, 37, 37, 0.98);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 4.75rem);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 50;
}

.navbar__link {
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.navbar__link:hover,
.navbar__link:focus {
    color: var(--color-orange);
}

/* Mobile Menu Toggle */
.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
    margin-right: 0.125rem;
    z-index: 51;
}

.navbar__toggle-icon {
    width: 1.5rem;
    height: 2px;
    background-color: var(--color-gray);
    transition: all var(--transition-base);
}

.navbar__toggle.active .navbar__toggle-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active .navbar__toggle-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown Menus */
.navbar__dropdown {
    position: relative;
}

.navbar__link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__link--dropdown svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__dropdown:hover .navbar__link--dropdown svg,
.navbar__dropdown:focus-within .navbar__link--dropdown svg {
    transform: rotate(180deg);
}

.dropdown__content {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background-color: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(136, 136, 136, 0.2);
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 14rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown__content--right {
    left: auto;
    right: 0;
}

.navbar__dropdown:hover .dropdown__content,
.navbar__dropdown:focus-within .dropdown__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.dropdown__item:hover,
.dropdown__item:focus {
    background-color: rgba(243, 138, 0, 0.1);
    color: var(--color-orange);
    transform: translateX(0.25rem);
}

.dropdown__item--active {
    background-color: rgba(243, 138, 0, 0.15);
    color: var(--color-orange);
    font-weight: 700;
}

@media (min-width: 768px) {
    .navbar__menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .navbar__toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar__menu {
        border-top: 1px solid rgba(136, 136, 136, 0.18);
        align-items: flex-start;
        gap: 0.5rem;
    }

    .dropdown__content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        margin: 0.35rem 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .navbar__dropdown.is-open .dropdown__content {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        pointer-events: auto;
    }

    .navbar__link,
    .navbar__link--dropdown {
        width: 100%;
        justify-content: space-between;
        font-size: 1rem;
        line-height: 1.4;
    }

    .navbar__link--dropdown {
        justify-content: flex-start;
        gap: 0.35rem;
    }

    .dropdown__item {
        padding: 0.6rem 0.75rem 0.6rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        font-size: 0.925rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }
}

/* ============================================
   HOME HERO
   ============================================ */

.home-hero {
    padding: 8rem 0 4rem;
    background: var(--color-white);
    color: var(--color-carbon);
}
.home-hero .center{
  margin-top: 1rem;
  color:#878787;
  right: 50%;
  text-align:center;
}

.home-hero strong{
  color:#000000;
}
.home-hero__grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 2.5rem;
    align-items: center;
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 42rem;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.55rem 0.9rem;
    align-self: flex-start;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid var(--color-gray);
    color: var(--color-dark-gray);
    font-weight: 500;
    font-size: 0.875rem;
}

.home-hero__badge svg {
    color: var(--color-orange);
}

.home-hero__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    text-align: left;
    color: #1E1E1E;
}

.home-hero__highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.home-hero__highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05rem;
    height: 0.4rem;
    background: rgba(243, 138, 0, 0.35);
    border-radius: 0.35rem;
    z-index: -1;
}

.home-hero__description {
    color: #1E1E1E;
    font-size: 1.0625rem;
    text-align: left;
}

.home-hero__actions {
    margin-top: 0.5rem;
}

.home-hero__rating img {
    max-width: 320px;
    height: auto;
}

.home-hero__scribble {
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 110%;
    margin-left: -5%;
    pointer-events: none;
    display: block;
}

.home-hero__scribble svg {
    width: 100%;
    height: 40px;
}

.home-hero__scribble path {
    fill: none;
    stroke: var(--color-orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: scribble-draw 0.9s ease-out forwards;
}

.home-hero__visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: end;
    justify-items: center;
}

.home-hero__device {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0.5rem 0.5rem 0;
}

.home-hero__caption {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-carbon);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.home-hero__caption::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-orange);
    border-radius: 999px;
    box-shadow: 0.55rem 0 0 var(--color-orange);
}

.home-hero__shape {
    display: none;
}

.home-hero__shape--circle {
    border-radius: 50% 52% 48% 50%;
}

.home-hero__shape--diamond {
    clip-path: polygon(50% 0%, 88% 25%, 88% 75%, 50% 100%, 12% 75%, 12% 25%);
    border-radius: 1.5rem;
}

.home-hero__device img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 368px;
    object-fit: contain;
}

.hero-visual--preventivas {
    max-width: 1170px;
    border-radius:12px;
    margin-top:60px;
}

.hero-visual--preventivas img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1170 / 600;

  box-shadow: 8px 8px 48px 0px rgba(0, 0, 0, 0.25);
    border-radius:12px;
}

@media (max-width: 1023px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-hero__content {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .home-hero__badge {
        align-self: center;
    }

    .home-hero__title,
    .home-hero__description {
        text-align: center;
    }

    .home-hero__title {
        font-size: 1.75rem;
        line-height: 1.75rem;
    }

    .home-hero__scribble {
        display: block;
    }

    .home-hero__scribble path {
        animation-delay: 0.2s;
    }

    .home-hero__description {
        font-size: 14px;
        line-height: 14px;
    }

    .home-hero__visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        justify-items: center;
    }

    .home-hero__device img {
        max-height: 280px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding: 9rem 0 3rem;
    }

    .home-hero__description {
        font-size: 14px;
        line-height: 14px;
    }

    .home-hero__actions {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .home-hero__rating img {
        margin: 0 auto;
    }

    /* Pain points tweaks for phones */
    .pain-points__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0;
        width: 100%;
    }

    .pain-points__icon {
        width: 40px !important;
        height: 40px !important;
        padding: 10px !important;
        box-sizing: border-box;
        border-radius: 8px !important;
        flex: 0 0 40px !important;
    }

    .pain-points__text {
        font-size: 14px !important;
    }
}

@media (min-width: 1024px) {
    .home-hero {
        padding-top: 9rem;
    }

    .home-hero__visual {
        gap: 2rem;
    }
}

/* Mobile-first padding overrides to ensure reduced vertical spacing */
@media (max-width: 1023px) {
    .section,
    .pain-points,
    .flow-block,
    .pricing-strip,
    .intelligence-cta,
    .testimonials,
    .final-cta,
    .cta-footer {
        padding: 40px 0 !important;
    }

    /* Offset hero for fixed navbar on small screens (navbar height ~5rem) */
    .home-hero {
        margin-top: calc(5rem + 1rem);
        padding-top: 8rem;
    }

    /* Pain points layout tweaks for mobile/tablet */
    .pain-points__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pain-points__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0;
    }

    .pain-points__icon {
        border-radius: 12px;
        flex-shrink: 0;
    }

    .pain-points__icon svg {
        width: 20px;
        height: 20px;
        padding: 0;
    }

    /* Flow block: show media before text on mobile/tablet */
    .flow-block__grid {
        grid-template-columns: 1fr;
    }

    .flow-block__media {
        order: 1;
    }

    .flow-block__content {
        order: 2;
    }

    /* Reports: show media before text on mobile/tablet */
    .reports__grid {
        grid-template-columns: 1fr;
    }

    .reports__media {
        order: 1;
        justify-self: center;
    }

    .reports__content {
        order: 2;
    }
}

@keyframes scribble-draw {
    from {
        stroke-dashoffset: 500;
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
}

.hero--split {
    background: linear-gradient(180deg, #1E1E1E 0%, #1E1E1E 70%, #ffffff 70%, #ffffff 100%);
}

.hero--preventivas-pattern {
    position: relative;
    --navbar-height: 5rem;
    --hero-preventivas-shape-03: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.03' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
    --hero-preventivas-shape-06: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.06' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
    --hero-preventivas-shape-10: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.1' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
}

.hero--preventivas-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(rgba(243, 138, 0, 0.03), rgba(243, 138, 0, 0.03)),
        linear-gradient(rgba(243, 138, 0, 0.06), rgba(243, 138, 0, 0.06)),
        linear-gradient(rgba(243, 138, 0, 0.1), rgba(243, 138, 0, 0.1)),
        linear-gradient(rgba(243, 138, 0, 0.1), rgba(243, 138, 0, 0.1)),
        linear-gradient(rgba(243, 138, 0, 0.1), rgba(243, 138, 0, 0.1));
    background-repeat: no-repeat;
    background-size: 1673px calc(1831px - var(--navbar-height));
    background-position:
        center 80px,
        center 222px,
        center 364px,
        center 506px,
        center 648px;
    background-image:
        var(--hero-preventivas-shape-03),
        var(--hero-preventivas-shape-06),
        var(--hero-preventivas-shape-10),
        var(--hero-preventivas-shape-10),
        var(--hero-preventivas-shape-10);
    opacity: 1;
}

.hero--split .hero__hexagons {
    top: -5%;
    left: -5%;
    right: -5%;
    height: 72%;
    inset: auto;
}

/* Hexagonal Background Pattern */
.hero__hexagons {
    position: absolute;
    inset: -5%;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 68px,
            rgba(243, 138, 0, 0.06) 68px,
            rgba(243, 138, 0, 0.06) 72px
        ),
        repeating-linear-gradient(60deg,
            transparent,
            transparent 68px,
            rgba(243, 138, 0, 0.06) 68px,
            rgba(243, 138, 0, 0.06) 72px
        ),
        repeating-linear-gradient(120deg,
            transparent,
            transparent 68px,
            rgba(243, 138, 0, 0.06) 68px,
            rgba(243, 138, 0, 0.06) 72px
        );
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: hexagonPulse 20s ease-in-out infinite;
}

@keyframes hexagonPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.hero__label {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    margin-bottom: 1.75rem;
    opacity: 0.95;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-size: 90px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    line-height: 80px;
    margin-bottom: 1.75rem;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__description {
    margin: 0 auto 3rem;
    color: rgba(229, 229, 229, 0.85);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero__cta {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.btn--hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    padding: 1.125rem 2.5rem;
    border-radius: 0.625rem;
    box-shadow:
        0 0 0 0 rgba(243, 138, 0, 0.4),
        0 10px 30px -5px rgba(243, 138, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero:hover::before {
    transform: translateX(100%);
}

.btn--hero:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 6px rgba(243, 138, 0, 0.1),
        0 15px 40px -5px rgba(243, 138, 0, 0.4);
}

.btn--hero:active {
    transform: translateY(0);
}

.btn--hero svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero:hover svg {
    transform: translateX(4px);
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero__stats--preventivas {
    gap: 0;
}

.hero__stats--preventivas img {
    display: block;
    max-width: 100%;
    height: 52px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(229, 229, 229, 0.5);
}

.hero__rating-icons {
    display: flex;
    gap: 0.1875rem;
    color: var(--color-orange);
}

.hero__stat-text {
    font-size: 0.8125rem;
    color: rgba(229, 229, 229, 0.7);
    font-weight: 400;
}

.hero__divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, rgba(229, 229, 229, 0.2), transparent);
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(229, 229, 229, 0.6);
    font-weight: 400;
}

.hero__stat-number {
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: 700;
    font-family: 'Blinker', 'Roboto', sans-serif;
}

.hero__stat-highlight {
    color: var(--color-orange);
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero__divider {
        display: none;
    }

    .btn--hero {
        width: 100%;
        max-width: 20rem;
    }
}

@media (max-width: 767px) {
    .hero--preventivas-pattern {
        padding: 7rem 0 3.5rem;
    }

    .hero--preventivas-pattern::before,
    .hero--preventivas-pattern .hero__hexagons {
        display: none;
    }

    .hero--preventivas-pattern .hero__label {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .hero--preventivas-pattern .hero__title {
        font-size: 2.25rem;
        line-height: 1.15;
        letter-spacing: 0.01em;
    }

    .hero--preventivas-pattern .hero__description {
        max-width: 34rem;
        font-size: 0.98rem;
        line-height: 1.6;
        margin: 0 auto 2.25rem;
    }

    .hero--preventivas-pattern .hero__cta {
        margin-bottom: 2.5rem;
    }

    .hero--preventivas-pattern .home-hero__visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero--preventivas-pattern .hero-visual--preventivas {
        margin-top: 1.25rem;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero--preventivas-pattern .hero-visual--preventivas img {
        aspect-ratio: 343 / 379;
        max-height: 420px;
    }

    .hero--preventivas-pattern .hero-visual--preventivas picture {
        display: block;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 343 / 379;
    }

    .hero--preventivas-pattern .home-hero__device {
        padding: 0;
        width: 100%;
    }

    .hero--preventivas-pattern .hero-visual--preventivas img {
        width: 100%;
        max-width: none;
        display: block;
        min-height: 280px;
    }
}

/* ============================================
   WHY SLIDER (PREVENTIVAS)
   ============================================ */

.why-slider {
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    grid-template-areas:
        "copy frame"
        "card frame";
    align-items: start;
    gap: 3rem;
    position: relative;
}

.why-slider__copy {
    grid-area: copy;
}

.why-slider__frame {
    grid-area: frame;
}

.why-slider__card {
    grid-area: card;
}

.why-slider__copy .section-title {
    margin-bottom: 0.75rem;
    text-align: left;
}

.why-slider__intro {
    max-width: 440px;
    color: var(--color-dark-gray);
    line-height: 1.7;
}

.why-slider__frame {
    width: 100%;
}

.why-slider__media {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 20px 70px -35px rgba(0, 0, 0, 0.35);
    max-width: 850px;
    margin-left: auto;
}

.why-slider__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 850 / 580;
    object-fit: cover;
    animation: none;
}

.why-slider__card {
    position: relative;
    margin-top: 3rem;
    left: 0;
    transform: none;
    background: #ffffff;
    padding: 1.5rem 1.75rem 1.25rem;
    border-radius: 1rem;
box-shadow: 8px 8px 48px 0px rgba(0, 0, 0, 0.25);
    max-width: 520px;
    width: calc(100% + 80px);
    z-index: 5;
}

.why-slider__card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-carbon);
    animation: none;
}

.why-slider__card-text {
    color: var(--color-dark-gray);
    font-size: 1rem;
    line-height: 1.7;
  height:80px;
    animation: none;
}

@keyframes whyFadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-animating {
    animation: whyFadeUp 0.45s ease;
}

.why-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.why-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.why-slider__arrows {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.why-slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #d8d1cb;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

.why-slider__dot.is-active {
    background: var(--color-orange);
    transform: scale(1.05);
}

.why-slider__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    background: transparent;
    box-shadow: none;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.why-slider__arrow:hover,
.why-slider__arrow:focus-visible {
    background: transparent;
    color: var(--color-orange-hover);
    transform: translateY(-1px);
}

.why-slider__slides {
    display: none;
}

@media (max-width: 1023px) {
    .why-slider {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "frame"
            "card";
        gap: 0;
    }

    .why-slider__card {
        position: static;
        width: 100%;
        margin-top: 1rem;
        left: 0;
        transform: none;
        box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 767px) {
    .why-slider__frame {
        margin-bottom: 0;
    }

    .why-slider__media {
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .why-slider__card {
        margin-top: 0;
        border-radius: 0 0 1rem 1rem;
    }
}

@media (max-width: 640px) {
    .why-slider__controls {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.75rem;
    }
}

/* ============================================
   TRUST BAR
   ============================================ */

/* ============================================
   STEPS SLIDER
   ============================================ */

.steps-slider {
    background: #1E1E1E;
    padding: 3.5rem 2.5rem;
}

.steps-slider .section-label {
    color: var(--color-orange);
}

.steps-slider__header {
    margin-bottom: 2rem;
}

.steps-slider__viewport {
    overflow: hidden;
    position: relative;
    padding-top: 0.5rem;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.steps-slider__viewport--dragging {
    cursor: grabbing;
}

.steps-slider__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 260px);
    gap: 1.25rem;
    transition: transform 0.4s ease;
    will-change: transform;
}

.steps-slider__rail img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.steps-slide {
    background: #1E1E1E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(243, 138, 0, 0.4);
    border-radius: 0.875rem;
    padding: 1.25rem 1rem 1rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 420px;
    box-shadow: 0 20px 60px -35px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}


.steps-slide__title {
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.steps-slide__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    min-height: 70px;
    position: relative;
    z-index: 1;
}

.steps-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.steps-slide--bg1 {
    background-image: url("../images/feature/comofunc1.png");
}

.steps-slide--bg2 {
    background-image: url("../images/feature/comofunc2.png");
}

.steps-slide--bg3 {
    background-image: url("../images/feature/comofunc3.png");
}

.steps-slide--bg4 {
    background-image: url("../images/feature/comofunc4.png");
}

.steps-slide--bg5 {
    background-image: url("../images/feature/comofunc5.png");
}

.steps-slider__controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.steps-slider__arrow {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base), transform var(--transition-base);
}

.steps-slider__arrow:hover,
.steps-slider__arrow:focus-visible {
    color: var(--color-orange);
    transform: translateY(-1px);
}


.steps-slider__arrow:active {
    transform: translateY(0);
}

@media (max-width: 1023px) {
    .steps-slider {
        padding: 2.5rem 1.5rem;
    }

    .steps-slider__rail {
        grid-auto-columns: minmax(220px, 240px);
    }
}

/* ============================================
   USE EXAMPLES
   ============================================ */

.use-examples {
    background: #1E1E1E;
}

.use-examples .section-header {
    margin-bottom: 0;
}

.use-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: -3rem;
    align-items: start;
    --use-card-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='white' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
}

.use-card {
    background: #ffffff;
    border-radius: 0.9rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px -25px rgba(0, 0, 0, 0.55);
    align-items: flex-start;
}

.use-card:nth-child(1),
.use-card:nth-child(4) {
    min-height: 300px;
}

.use-card:nth-child(1) {
    align-self: end;
}

.use-card:nth-child(2),
.use-card:nth-child(3) {
    min-height: 400px;
}

.use-card--tall {
    min-height: 400px;
}

.use-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.use-card__icon {
    color: #b5a189;
    width: 3.25rem;
    height: 3.25rem;
    align-self: flex-start;
    margin: 1.5rem 0 0.5rem 1.5rem;
}
.use-card__bg{
  width:100%;
  height:215.1px;
    background-repeat:no-repeat;
  background-size:100%;
}
.eu-1{
 background-image:image-set(url(../images/feature/eu-1.webp) type("image/webp"), url(../images/feature/eu-1.jpg) type("image/jpeg"));
}
.eu-2{
   background-image:image-set(url(../images/feature/eu-2.webp) type("image/webp"), url(../images/feature/eu-2.jpg) type("image/jpeg"));
}
.eu-3{
 background-image:image-set(url(../images/feature/eu-3.webp) type("image/webp"), url(../images/feature/eu-3.jpg) type("image/jpeg"));
}
.eu-4{
   background-image:image-set(url(../images/feature/eu-4.webp) type("image/webp"), url(../images/feature/eu-4.jpg) type("image/jpeg"));
}

/* Ajusta a altura da faixa de ícone nos cards 1 e 4 */
@media (min-width: 901px) {
    .use-card {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .use-card:nth-child(1) .use-card__bg,
    .use-card:nth-child(4) .use-card__bg {
        height: 160px;
    }

    .use-card:nth-child(1) {
        background-image: image-set(url(../images/feature/eu-desk-1.webp) type("image/webp"), url(../images/feature/eu-desk-1.jpg) type("image/jpeg"));
    }

    .use-card:nth-child(2) {
        background-image: image-set(url(../images/feature/eu-desk-2.webp) type("image/webp"), url(../images/feature/eu-desk-2.jpg) type("image/jpeg"));
    }

    .use-card:nth-child(3) {
        background-image: image-set(url(../images/feature/eu-desk-3.webp) type("image/webp"), url(../images/feature/eu-desk-3.jpg) type("image/jpeg"));
    }

    .use-card:nth-child(4) {
        background-image: image-set(url(../images/feature/eu-desk-4.webp) type("image/webp"), url(../images/feature/eu-desk-4.jpg) type("image/jpeg"));
    }

    .use-card__bg {
        background-image: none;
        background-color: transparent;
    }
}
.use-card__icon img {
    display: block;
    height: 100%;
    width: auto;
}

.use-card__title {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 1px;
    color: #1E1E1E;
}

.use-card__text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 22px;
    letter-spacing: 1px;
    color: #444444;
}

.use-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    margin: auto 1.5rem 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .use-card {
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .use-card {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    .use-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .use-examples .section-header {
        padding-left: 0;
        padding-right: 0;
    }

    .use-cards {
        margin-top: 1.5rem;
    }

    .use-card,
    .use-card--tall,
    .use-card:nth-child(1),
    .use-card:nth-child(2),
    .use-card:nth-child(3),
    .use-card:nth-child(4) {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .use-card {
        position: relative;
    }

    .use-card__body {
        position: relative;
        z-index: 3;
    }

}
@media (max-width: 640px) {
    .steps-slider {
        padding: 2rem 1rem;
    }

    .steps-slide {
        min-height: 420px;
        aspect-ratio: 3 / 4;
        padding: 1.5rem;
        gap: 1rem;
    }

    .steps-slider__rail {
        grid-auto-columns: 100%;
        gap: 2rem;
    }

    .steps-slider__controls {
        justify-content: flex-start;
    }
}

.trust-bar {
    padding: 2.75rem 0 3.25rem;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray);
}

.trust-bar__headline {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-carbon);
    margin-bottom: 1.5rem;
}

.trust-bar__headline strong {
    color: var(--color-orange);
}

.trust-bar__logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-bar__logos img {
    width: min(1040px, 100%);
    height: auto;
}

/* ============================================
   PAIN POINTS
   ============================================ */

.pain-points {
    background: #222222;
    color: var(--color-white);
    padding:80px 0;
}

.pain-points__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.pain-points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    align-items: start;
}

.pain-points__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 0.5rem;
}

.pain-points__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #E0E0E0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex: 0 0 72px;
}

.pain-points__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    flex: 1;
    margin-top: 0.15rem;
}

.pain-points__text strong {
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .pain-points {
        padding: 4rem 0;
    }

    .pain-points__title {
        font-size: 1.9rem;
    }
}

/* ============================================
   FLOW BLOCK
   ============================================ */

.flow-block {
    padding: 3.5rem 0;
}

.flow-block__header h2 {
    text-align: center;
    color: var(--color-carbon);
    margin-bottom: 2.5rem;
}

.flow-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.flow-block__grid + .flow-block__grid {
    margin-top: 3rem;
}

.flow-block__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-block__step {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.flow-block__title {
    font-size: 1.625rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
}

.flow-block__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #1E1E1E;
    padding-left: 0;
}

.flow-block__list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.45;
}

.flow-block__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-orange);
    font-weight: 700;
}

.flow-block__media {
    position: relative;
    justify-self: center;
}

.flow-block__shape {
    position: absolute;
    inset: 8% -8%;
    background: var(--color-orange);
    border-radius: 1.5rem;
    opacity: 0.95;
    filter: drop-shadow(0 15px 35px rgba(243, 138, 0, 0.35));
}

.flow-block__media img {
    position: relative;
    z-index: 1;
    max-height: 420px;
    object-fit: contain;
}

.flow-block__groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-block__group-title {
    font-weight: 700;
    color: #1E1E1E;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.flow-block__group-title-svg , .svg-bubble{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#EBEBEB;
  margin:0;
  border-radius: 9999px;
  width: 30px;
  height:30px;
}
.flow-block__group-title svg {
  margin: 0;
  width:18px;

}

@media (max-width: 767px) {
    .flow-block {
        padding: 3rem 0;
    }

    .flow-block__title {
        font-size: 1.4rem;
    }

    .flow-block__shape {
        inset: 6% -4%;
    }
}

/* ============================================
   OFFLINE CTA
   ============================================ */

.offline-cta {
    background: #f6f6f6;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
}

.offline-cta__title {
    color: #1E1E1E;
    margin-bottom: 0.75rem;
}

.offline-cta__title .highlight {
    color: var(--color-orange);
}

.offline-cta__text {
    color: #555555;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

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

.reports {
    padding: 3.5rem 0 3.75rem;
}

.reports__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.reports__step {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.reports__title {
    font-size: 1.625rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0.5rem 0 0.75rem;
}

.reports__description {
    color: #1E1E1E;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.reports__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.reports__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    background-color:#EBEBEB;
    border-radius: 0.5rem;
    font-weight: 700;
    color: #1E1E1E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.reports__badge svg {
    color: var(--color-orange);
}

.reports__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.reports__tag {
    display: flex;
    gap: 0.5rem;
    border-radius: 0.5rem;
    color: #1E1E1E;
    font-weight: 700;
    white-space: nowrap;
}

.reports__tag svg {
    color: var(--color-orange);
}

.reports__media {
    position: relative;
    justify-self: center;
}

.reports__shape {
    position: absolute;
    inset: 8% -8%;
    background: var(--color-orange);
    border-radius: 1.5rem;
    opacity: 0.95;
    filter: drop-shadow(0 15px 35px rgba(243, 138, 0, 0.35));
}

.reports__media img {
    position: relative;
    z-index: 1;
    max-height: 420px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .reports {
        padding: 3rem 0;
    }

    .reports__title {
        font-size: 1.4rem;
    }

    .reports__shape {
        inset: 6% -4%;
    }
}

/* ============================================
   PRICING STRIP & INTELLIGENCE CTA
   ============================================ */

.pricing-strip {
    background: #f5f3f0;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #e6e2db;
}

.pricing-strip__title {
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.intelligence-cta {
    background: #1d1d1d;
    color: var(--color-white);
    text-align: center;
    padding: 3.5rem 0;
}


.intelligence-cta__title {
    margin-bottom: 0.75rem;
}

.intelligence-cta__text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .pricing-strip {
        padding: 2.5rem 0;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 3.5rem 0;
    background: #F6F6F6;
    text-align: center;
}

.testimonials__title {
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.testimonials__description {
    color: #555555;
    max-width: 960px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.testimonials__viewport {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 980px;
}

.testimonials__rail {
    display: flex;
    gap: 0;
    will-change: transform;
    touch-action: pan-y;
}

.testimonial-card {
    flex: 0 0 100%;
    box-shadow: none;
    padding: 2rem 1.5rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1E1E1E;
    font-style: italic;
}

.testimonial-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f1f1f1, #d7d7d7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.testimonial-card__avatar svg {
    display: none;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 700;
    color: #1E1E1E;
}

.testimonial-card__role {
    color: #555555;
    font-size: 0.95rem;
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfcfcf;
    border: none;
    transition: background 0.2s ease;
}

.testimonials__dot.is-active {
    background: #1E1E1E;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 767px) {
    .testimonials {
        padding: 3rem 0;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    padding: 3.5rem 0;
    text-align: center;
    background: #fdfdfd;
}

.final-cta__title {
    color: #1E1E1E;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.final-cta__title .highlight {
    color: var(--color-orange);
}

.final-cta__colum {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.final-cta__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.6rem;
    background: #ffffff;
    color: #555555;
    margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
}

/* ============================================
   LOGO BAR
   ============================================ */

.logobar {
    background-color: var(--color-white);
    padding: 20px 0;
    margin-top: -10px;
}

.logobar .container {
    max-width: 100%;
    padding: 0;
}

.logobar__viewport {
    position: relative;
    overflow: hidden;
    user-select: none;
    cursor: grab;
    padding: 0 1.5rem;
}

.logobar__rail {
    display: flex;
    align-items: center;
    gap: 3.75rem;
    padding: 0.5rem 0;
    min-width: max-content;
    will-change: transform;
}

.logobar__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    transition: transform var(--transition-base), opacity var(--transition-base), filter var(--transition-base);
}

.logobar__img {
    height: 72px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: inherit;
}

.logobar__item:hover .logobar__img,
.logobar__item:focus-visible .logobar__img {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .logobar__rail {
        gap: 3.75rem;
    }

    .logobar__img {
        height: 72px;
    }
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */

.section-label {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-carbon);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-title--light {
    color: var(--color-white);
}

.section-label--dark {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Roboto', sans-serif;
}

.section-header {
    margin-bottom: 3rem;
}

.import-section .section-header {
    margin-bottom: 77px;
}

.section-header--center {
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 1023px) {
    .section-title {
        font-size: 32px;
        line-height: 1.25;
    }
}

/* ============================================
   WHY LEANKEEP SECTION
   ============================================ */

.why-leankeep {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.why-leankeep__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--color-orange);
    box-shadow: var(--shadow-xl);
    margin-bottom: 1.5rem;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-carbon);
}

.feature-card__text {
    color: var(--color-dark-gray);
    line-height: 1.7;
}

.feature-card__dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-gray);
}

.dot--active {
    background-color: var(--color-orange);
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    color: var(--color-orange);
    transition: all var(--transition-base);
}

.carousel-btn:hover,
.carousel-btn:focus {
    border-color: var(--color-orange);
    background-color: rgba(243, 138, 0, 0.1);
}

.why-leankeep__image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: rgba(243, 138, 0, 0.1);
    filter: blur(3rem);
    border-radius: 50%;
    transform: translate(2.5rem, 2.5rem);
}

.why-leankeep__image img {
    position: relative;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .why-leankeep__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-carbon);
    color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-card {
    background-color: #2a2a2a;
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
    border-bottom: 4px solid rgba(136, 136, 136, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
}

.step-card:hover,
.step-card:focus-within {
    border-bottom-color: var(--color-orange);
}

.step-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0.5rem;
    transition: color var(--transition-base);
}

.step-card:hover .step-card__title {
    color: var(--color-orange);
}

.step-card__description {
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    padding: 0 1.5rem 1.5rem;
}

.step-card__image {
    overflow: hidden;
}

.step-card__image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    opacity: 0.6;
    transition: all var(--transition-slow);
}

.step-card:hover .step-card__image img {
    opacity: 1;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   KEY FEATURES (BENTO GRID)
   ============================================ */

.key-features {
    padding: 5rem 0;
    background-color: var(--color-orange);
    color: var(--color-white);
}

.key-features .section-label {
    color: #1E1E1E;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    transition: background-color var(--transition-base);
    min-height: 14rem;
}

.bento-card:hover,
.bento-card:focus-within {
    background-color: transparent;
}

.bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all var(--transition-slow);
    z-index: 0;
}

.bento-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.bento-card__content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    font-family: 'Blinker', 'Roboto', sans-serif;
}

.bento-card__icon {
    background-color: var(--color-white);
    color: var(--color-orange);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bento-card__content h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
}

.bento-card--wide {
    aspect-ratio: 16 / 10;
}

.bento-card--tall {
    aspect-ratio: 3 / 4;
}

.bento-card--square {
    aspect-ratio: 1 / 1;
}

.bento-card--square-fixed {
    width: 374px;
    height: 374px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .preventivas-page #recursos .bento-card--square-fixed {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .preventivas-page #recursos .bento-card img {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ============================================
   USE CASES SECTION
   ============================================ */

.use-cases {
    padding: 5rem 0;
    background-color: var(--color-carbon);
    color: var(--color-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.use-case-card {
    background-color: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base);
}

.use-case-card:hover,
.use-case-card:focus-within {
    transform: translateY(-4px);
}

.use-case-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-carbon);
}

.use-case-card__icon {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.use-case-card__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.use-case-card__content p {
    font-size: 0.875rem;
    color: var(--color-dark-gray);
}

.use-case-card__image {
    overflow: hidden;
    flex: 1;
}

.use-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.use-case-card:hover .use-case-card__image img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-card {
        flex-direction: row;
        height: 12rem;
    }

    .use-case-card__content {
        width: 50%;
        justify-content: space-between;
    }

    .use-case-card__image {
        width: 50%;
    }
}

/* ============================================
   DATA REPORTS SECTION
   ============================================ */

.data-reports {
    padding: 5rem 0;
    background-color: rgba(245, 243, 241, 1);
}

.data-reports__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.data-reports__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-reports__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    color: rgba(158, 146, 136, 1);
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.data-reports__item svg {
    flex-shrink: 0;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.data-reports__item p {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
    font-style: normal;
    color: inherit;
}

.data-reports__item.is-active {
    background-color: var(--color-white);
    color: var(--color-carbon);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px -22px rgba(0, 0, 0, 0.35);
}

.data-reports__item.is-active p {
    font-weight: 500;
}

.data-reports__item.is-active svg {
    color: var(--color-orange);
}

.data-reports__image {
    padding: 0;
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.35);
}

.data-reports__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 480;
    object-fit: cover;
    border-radius: 0.75rem;
    background-color: transparent;
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.35);
    border: none;
}

@media (min-width: 768px) {
    .data-reports__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .data-reports__grid {
        grid-template-areas:
            "image"
            "list";
    }

    .data-reports__image {
        grid-area: image;
    }

    .data-reports__list {
        grid-area: list;
    }
}

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

.import-section {
    padding: 5rem 0;
    background-color: var(--color-carbon);
    position: relative;
}

.import-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .import-grid {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
        column-gap: 2rem;
    }
}

.import-card {
    background-color: #2A2A2A;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    display: grid;
    gap: 1.25rem;
    align-content: start;
    position: relative;
    overflow: visible;
    width: fit-content;
    max-width: 100%;
    justify-self: start;
}

.import-card--right {
    grid-template-rows: auto 1fr;
    padding: 32px 0 0 32px;
    justify-self: end;
}

.import-card:not(.import-card--right) {
    padding: 0;
}

.import-card__content {
    text-align: left;
    padding:1rem;
}

.import-card__content h3 {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    line-height: 1;
    letter-spacing: 1px;
}

.import-card__content p {
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1;
    letter-spacing: 1px;
}

.import-card__image {
    position: relative;
    background: transparent;
    border-radius: 0.75rem;
    padding: 0;
}

.import-card__badge {
    position: absolute;
    top: 50%;
    right: -2.5rem;
    left: auto;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    z-index: 2;
    transform: translateY(-50%);
}

.import-card__badge--right {
    right: -2.5rem;
    left: auto;
    width: 164px;
    height: 164px;
}

.import-card--right .import-card__badge {
    top: 50%;
    transform: translateY(-50%);
}

.import-card:not(.import-card--right) .import-card__badge {
    top: -16px;
    right: -82px;
    left: auto;
    width: 164px;
    height: 164px;
    transform: none;
}

.import-card__badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/Vector.svg') center/contain no-repeat;
    filter: drop-shadow(0 12px 24px rgba(243, 138, 0, 0.25));
}

.import-card__badge svg {
    position: relative;
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.import-card:not(.import-card--right) .import-card__badge svg {
    height: 60px;
    width: auto;
}

.import-card--right .import-card__badge svg {
    height: 60px;
    width: 73px;
}

.import-card__image img {
    width: 100%;
    border-radius: 0.5rem;
    background-color: #F3F4F6;
    object-fit: cover;
}

.import-card--right .import-card__image {
    align-self: start;
    justify-self: start;
    padding: 0;
}

.import-card:not(.import-card--right) .import-card__image {
    align-self: start;
    justify-self: start;
    padding: 0;
    margin-right: 32px;
}

.import-card--right .import-card__image img {
    width: 460px;
    max-width: 100%;
    height: auto;
}

.import-card:not(.import-card--right) .import-card__content {
    margin-left: 32px;
    margin-bottom: 42px;
}

@media (max-width: 767px) {
    .import-grid {
        justify-items: stretch;
    }

    .import-card,
    .import-card--right {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .import-card--right {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .import-card:not(.import-card--right) {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .import-card__badge {
        top: 1rem;
        right: 1rem;
        left: auto;
        transform: none;
        width: 104px;
        height: 90px;
    }

    .import-card--right .import-card__badge {
        top: 0;
        right: 0;
        transform: none;
    }

    .import-card:not(.import-card--right) .import-card__badge {
        top: 0;
        right: 0;
        width: 104px;
        height: 90px;
    }

    .import-card__badge svg {
        width: 36px;
        height: 36px;
        z-index: 2;
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .import-card__badge::before {
        background: url("data:image/svg+xml,%3Csvg%20width='104'%20height='90'%20viewBox='0%200%20104%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M2.65346e-05%203.17086V44.7681C-0.00630073%2049.0568%201.11905%2053.2715%203.26264%2056.9872C5.40624%2060.7029%208.49234%2063.7884%2012.2099%2065.9328L48.2901%2086.7314C52.0024%2088.8727%2056.2134%2090%2060.5%2090C64.7866%2090%2068.9976%2088.8727%2072.7099%2086.7314L108.79%2065.9328C112.508%2063.7884%20115.594%2060.7029%20117.737%2056.9872C119.881%2053.2715%20121.006%2049.0568%20121%2044.7681V3.17086C120.996%20-1.10751%20119.865%20-5.3095%20117.722%20-9.01358C115.579%20-12.7177%20112.499%20-15.7936%20108.79%20-17.9327L72.7099%20-38.7314C68.9976%20-40.8727%2064.7866%20-42%2060.5%20-42C56.2134%20-42%2052.0024%20-40.8727%2048.2901%20-38.7314L12.2099%20-17.6278C8.54571%20-15.5147%205.49387%20-12.4868%203.35345%20-8.84077C1.21303%20-5.19472%200.0574749%20-1.05564%202.65346e-05%203.17086Z'%20fill='%23F38A00'/%3E%3C/svg%3E") center/contain no-repeat;
        filter: drop-shadow(0 12px 24px rgba(243, 138, 0, 0.25));
    }

    .import-card__image img {
        aspect-ratio: 460 / 276;
    }

    .import-card:not(.import-card--right) .import-card__image {
        margin-right: 0;
    }

    .import-card__content h3 {
        margin-bottom: 0;
    }

    .import-card__content p {
        margin-top: 0;
    }

    .import-card:not(.import-card--right) .import-card__content {
        margin-left: 0;
    }

    .import-section .section-header {
        margin-bottom: 2rem;
    }

    .import-card__content {
        display: grid;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
}

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

.comparison {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.comparison__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: end;
    justify-items: center;
}

.comparison__card {
    border-radius: 1rem;
    padding: 42px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 420px;
}

.comparison__card--recommended {
    background-color: #FFF7EC;
    border: 1px solid rgba(243, 138, 0, 0.45);
    order: -1;
    max-width: 420px;
    box-shadow:
        0 30px 120px rgba(243, 138, 0, 0.28),
        0 0 80px rgba(243, 138, 0, 0.18);
}

.comparison__card--sheet {
    background-color: rgba(245, 243, 241, 1);
    border: 1px solid #E0DAD3;
    max-width: 340px;
}

.comparison__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--color-orange);
}

.comparison__header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.comparison__header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comparison__card--sheet .comparison__header h3 {
    color: rgba(68, 68, 68, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}


.comparison__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
}

.comparison__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size:1rem ;
    font-weight: 500;
    color: rgba(30, 30, 30, 0.9);
    padding: 16px 0;
    border-bottom: 1px solid rgba(243, 138, 0, 0.2);
}

.comparison__card--recommended .comparison__list svg {
    flex-shrink: 0;
    color: #00A889;
}

.comparison__card--sheet .comparison__list {
    opacity: 0.8;
}

.comparison__card--sheet .comparison__list svg {
    flex-shrink: 0;
    color: var(--color-gray-dark);
}

.comparison__icon-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 25px;
    color: #BBB0A9;
    flex-shrink: 0;
}

.comparison__card--sheet .comparison__list li {
    border-bottom: 1px solid rgba(136, 136, 136, 0.25);
    color: #5A5651;
}

.comparison__card--sheet .comparison__list li:first-child {
    border-top: 1px solid rgba(136, 136, 136, 0.25);
}

.comparison__list li:last-child {
    border-bottom: none;
}

.comparison__requirements {
    width: 100%;
    max-width: 340px;
    padding: 42px 32px;
    border-radius: 1rem;
}

.comparison__requirements-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
}

.comparison__requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison__requirements-list li {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #2E2E2E;
    border-bottom: 1px solid #E6E6E6;
    white-space: nowrap;
}

.comparison__requirements-list li:first-child {
    border-top: 1px solid #E6E6E6;
}

.comparison__requirements-list li:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .comparison__grid {
        grid-template-columns: repeat(3, minmax(320px, 1fr));
        justify-content: center;
        align-items: end;
        column-gap: 4rem;
        justify-items: center;
    }

    .comparison__card--recommended {
        order: 0;
        justify-self: center;
        grid-column: 2;
    }

    .comparison__requirements {
        grid-column: 1;
    }

    .comparison__card--sheet {
        grid-column: 3;
    }
}

@media (max-width: 767px) {
    .comparison__grid {
        justify-items: stretch;
    }

    .comparison__card {
        width: 100%;
        max-width: none;
    }

    .comparison__card--recommended,
    .comparison__card--sheet {
        max-width: none;
    }

    .comparison__requirements {
        display: none;
    }
}

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

.integrations {
    padding: 5rem 0;
    background-color: var(--color-orange);
    overflow: hidden;
}

.integrations__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.integration-card {
    position: relative;
    border-radius: 1rem;
  overflow: hidden;
  height: 24rem;
  transition: transform var(--transition-base);
  box-shadow: 0px 4px 20px 0px #00000040;
}

.integration-card:hover,
.integration-card:focus-within {
    transform: translateY(-4px);
}

.integration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
    background-color: transparent;
}

.integration-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.integration-card__overlay h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: 'Blinker', 'Roboto', sans-serif;
    color: var(--color-white);
}

.integration-card--top .integration-card__overlay {
    top: 0;
    bottom: auto;
}

@media (min-width: 768px) {
    .integrations__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.pricing-page .faq {
    padding-top: 4rem;
}

.pricing-page .faq .container--narrow {
    max-width: 1080px;
}

.faq {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-gray);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(30, 30, 30, 0.9);
    transition: color var(--transition-base);
}

.faq__question:hover,
.faq__question:focus {
    color: var(--color-orange);
}

.faq__icon {
    flex-shrink: 0;
    transition: all var(--transition-base);
    color: var(--color-gray-dark);
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
    color: var(--color-orange);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
}

.faq__item:has(.faq__question[aria-expanded="true"]) .faq__answer {
    max-height: 12rem;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq__answer p {
    color: var(--color-dark-gray);
    font-size: 1.05rem;
}

/* ============================================
   CTA FOOTER SECTION
   ============================================ */

.cta-footer {
    padding: 6rem 0;
    background-color: var(--color-carbon);
    position: relative;
    overflow: hidden;
}

.cta-footer--preventivas-pattern {
    --cta-preventivas-shape-03: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.03' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
    --cta-preventivas-shape-06: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.06' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
    --cta-preventivas-shape-10: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1683 1841'><path fill='%23F38A00' fill-opacity='0.1' d='M9.43228 616.362L0.0532313 1196.38C-1.00125 1256.18 13.6102 1315.2 42.415 1367.49C71.2197 1419.78 113.2 1463.49 164.124 1494.22L658.367 1792.3C709.219 1822.99 767.197 1839.65 826.473 1840.61C885.749 1841.56 944.236 1826.79 996.053 1797.76L1499.67 1515.82C1551.57 1486.75 1594.94 1444.42 1625.42 1393.08C1655.9 1341.75 1672.41 1283.24 1673.29 1223.44L1682.67 643.419C1683.57 583.762 1668.89 524.918 1640.09 472.79C1611.29 420.663 1569.39 377.085 1518.58 346.427L1024.34 48.3504C973.49 17.6627 915.512 1.00237 856.235 0.0438548C796.959 -0.91466 738.473 13.8625 686.655 42.89L182.965 329.083C131.819 357.728 88.9337 399.265 58.513 449.626C28.0924 499.987 11.1797 557.442 9.43228 616.362V616.362Z'/></svg>");
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(136, 136, 136, 0.1), transparent);
    opacity: 0.3;
    z-index: 2;
}

.cta-footer--preventivas-pattern::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 1500px auto;
    background-position:
        center calc(100% - 60px),
        center calc(100% - 170px),
        center calc(100% - 280px),
        center calc(100% - 390px),
        center calc(100% - 500px);
    background-image:
        var(--cta-preventivas-shape-03),
        var(--cta-preventivas-shape-06),
        var(--cta-preventivas-shape-10),
        var(--cta-preventivas-shape-10),
        var(--cta-preventivas-shape-10);
}

.cta-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "content"
        "image"
        "actions";
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-footer__content {
    grid-area: content;
    text-align: center;
}

.cta-footer__actions {
    grid-area: actions;
    display: flex;
    justify-content: center;
}

.cta-footer__content h2 {
    color: var(--color-white);
    margin-bottom: 48px;
    font-family: 'Blinker', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 1px;
}

.cta-footer__image img {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(136, 136, 136, 0.3);
}

@media (min-width: 768px) {
    .cta-footer__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "content image"
            "actions image";
    }

    .cta-footer__content {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .cta-footer__grid {
        grid-template-areas:
            "image"
            "content"
            "actions";
        gap: 1.25rem;
    }

    .cta-footer__content h2 {
        margin-bottom: 8px;
    }

    .cta-footer__content {
        text-align: left;
    }

    .cta-footer__actions {
        justify-content: flex-start;
    }

    .cta-footer__actions .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #151515;
    color: var(--color-white)!important;
    padding: 3rem 0;
    border-top: 1px solid rgba(136, 136, 136, 0.2);
    font-size: 0.875rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__column h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gray-dark);
}

.footer__column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color:#ffffff !important;
}

.footer__column a {
    color: white
    transition: color var(--color-white);
}

.footer__column a:hover,
.footer__column a:focus {
    color: var(--color-orange);
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer__social a{
 padding: 2px
}
.footer__social svg{
  width:100%;
  height:100%;
  color: white;
}
.social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    display: block;
}

.social-icon--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon--facebook {
    background-color: #1877F2;
}

.social-icon--linkedin {
    color: #0A66C2;
    background-color: #ffffff;
}

.social-icon--youtube{
  background-color: #ffffff;
}
.social-icon--linkedin svg{
    color: #0A66C2;
}
.footer__apps h4 {
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.app-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background-color: rgba(136, 136, 136, 0.2);
    border: 1px solid rgba(136, 136, 136, 0.3);
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    transition: all var(--transition-base);
}

.app-badge:hover,
.app-badge:focus {
    background-color: rgba(136, 136, 136, 0.3);
    border-color: rgba(136, 136, 136, 0.5);
}

.footer__demo-card {
    background-color: var(--color-white);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__demo-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--color-gray);
}

.footer__demo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__demo-text {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer__demo-cta {
    font-size: 0.75rem;
    color: var(--color-dark-gray);
    margin-top: 0.25rem;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(136, 136, 136, 0.2);
    text-align: center;
    color: var(--color-dark-gray);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* ============================================
   DEMO PAGE
   ============================================ */

.demo-hero {
    padding: calc(5rem + 2rem) 0 5rem;
}

.demo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    grid-template-areas: "content form";
    gap: 2.5rem;
    align-items: start;
}

.demo-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-area: content;
}

.demo-hero__eyebrow {
    display: none;
}

.demo-hero__title {
    font-size: 2.5rem;
    line-height: 2.75rem;
    color: var(--color-carbon);
}

.demo-hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-dark-gray);
    max-width: 38rem;
}

.demo-card {
    background-color: #f5f3f1;
    border: none;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: none;
}

.demo-card + .demo-card {
    margin-top: 1rem;
}

.demo-card__title {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: var(--color-carbon);
}

.demo-block + .demo-block {
    margin-top: 1rem;
}

.demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-carbon);
}

.demo-list__icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-orange);
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.demo-list__icon::before {
    display: inline-flex;
}

.demo-form-card {
    background-color: #f5f3f1;
    border: none;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: none;
    position: sticky;
    top: 6.5rem;
    grid-area: form;
}

.demo-form-card__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.6rem;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-weight: 600;
    color: var(--color-carbon);
    font-size: 0.95rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.5rem;
    border: 1px solid #dcd7d0;
    background-color: var(--color-white);
    font-size: 0.95rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-field.is-invalid input,
.form-field.is-invalid select {
    border-color: #d93025;
    box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.15);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(243, 138, 0, 0.15);
    outline: none;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-dark-gray) 50%), linear-gradient(135deg, var(--color-dark-gray) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.form-help {
    font-size: 0.85rem;
    color: #5a5a5a;
}

.form-error {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #b42318;
}

.form-actions {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6a6a6a;
}

.form-feedback {
    margin-top: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
}

.form-feedback.is-success {
    background-color: #e8f7ee;
    border-color: #bce6cd;
    color: #1e6b3b;
}

.form-feedback.is-error {
    background-color: #fdecec;
    border-color: #f5b9b9;
    color: #9b1c1c;
}

.demo-card:nth-of-type(1) .demo-list__item:nth-child(1) .demo-list__icon::before { content: "build"; }
.demo-card:nth-of-type(1) .demo-list__item:nth-child(2) .demo-list__icon::before { content: "help"; }
.demo-card:nth-of-type(1) .demo-list__item:nth-child(3) .demo-list__icon::before { content: "attach_money"; }
.demo-card:nth-of-type(1) .demo-list__item:nth-child(4) .demo-list__icon::before { content: "check_circle"; }

.demo-card:nth-of-type(2) .demo-list__item:nth-child(1) .demo-list__icon::before { content: "schedule"; }
.demo-card:nth-of-type(2) .demo-list__item:nth-child(2) .demo-list__icon::before { content: "lightbulb"; }
.demo-card:nth-of-type(2) .demo-list__item:nth-child(3) .demo-list__icon::before { content: "grade"; }
.demo-card:nth-of-type(2) .demo-list__item:nth-child(4) .demo-list__icon::before { content: "attach_money"; }

@media (max-width: 1023px) {
    .demo-hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "form"
            "content";
    }

    .demo-hero__title {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .demo-hero__subtitle {
        font-size: 1rem;
    }

    .demo-form-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .demo-hero {
        padding: calc(5rem + 2rem) 0 3.5rem;
    }

    .demo-card__title {
        font-size: 1.1rem;
    }

    .demo-list__item {
        font-size: 0.95rem;
    }
}

/* Demo page main spacing to clear fixed navbar */
.demo-page main {
    padding-top: 3.5rem;
}

@media (max-width: 767px) {
    .demo-page main {
        padding-top: 4rem;
    }
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-page main {
    padding-top: 4.5rem;
}

@media (max-width: 767px) {
    .pricing-page main {
        padding-top: 5.5rem;
    }
}

.pricing-hero {
    text-align: center;
    padding: 6rem 0 3rem;
    background-color: var(--color-white);
}

.pricing-hero__title , .section-title--center {
    font-size: 2.6rem!important;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pricing-hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.pricing-hero__subtitle strong {
    color: var(--color-carbon);
}

.pricing-hero__note {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.pricing-hero__actions {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid #e6e0d9;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f5f3f1;
}

.pricing-table__item {
    display: grid;
    grid-template-rows: auto auto;
    border-right: 1px solid #e6e0d9;
    background-color: #f5f3f1;
}

.pricing-table__item:last-child {
    border-right: none;
}

.pricing-table__label {
    padding: 0.85rem 1rem;
    background-color: #f5f3f1;
    font-weight: 600;
    color: var(--color-carbon);
    font-size: 18px;
    border-bottom: 1px solid #e6e0d9;
}

.pricing-table__price {
    padding: 1.1rem 1rem 1.4rem;
    font-weight: 600;
    font-size: 28px;
    font-family:'Blinker', 'Roboto', sans-serif;
    color: var(--color-carbon);
    background-color: #ffffff;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 1023px) {
    .pricing-table {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        border: none;
        background-color: transparent;
    }

    .pricing-table__item {
        border: 1px solid #e6e0d9;
        border-radius: 0.75rem;
        overflow: hidden;
        border-right: 1px solid #e6e0d9;
    }

    .pricing-table__item:last-child {
        border-right: 1px solid #e6e0d9;
    }
}

@media (max-width: 767px) {
    .pricing-hero {
        padding: 5.5rem 0 3rem;
    }

    .pricing-hero__title {
        font-size: 2.2rem;
    }

    .pricing-hero__subtitle {
        font-size: 1.05rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .pricing-table__item {
        border: 1px solid #e6e0d9;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .pricing-table__label {
        padding: 0.75rem 0.85rem;
        font-size: 18px;
    }

    .pricing-table__price {
        padding: 0.9rem 0.85rem 1rem;
        font-size: 28px;
    }
}

.section-title--center {
    text-align: center;
    margin-bottom:2rem;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray);
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: var(--color-orange);
    color: var(--color-white);
}
