/* General Styles 16 4 */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');
@font-face {
    font-family: "ttc";
    src: url("https://assets.iallofrance.com/assets/fonts/tt_commons_thin.otf") format("opentype"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_thin-webfont.woff2") format("woff2"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_thin-webfont.woff") format("woff");
    font-weight: 100;
    font-style: normal
}
@font-face {
    font-family: "ttc";
    src: url("https://assets.iallofrance.com/assets/fonts/tt_commons_light.otf") format("opentype"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_light-webfont.woff2") format("woff2"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal
}
@font-face {
    font-family: "ttc";
    src: url("https://assets.iallofrance.com/assets/fonts/tt_commons_medium.otf") format("opentype"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_medium-webfont.woff2") format("woff2"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal
}
@font-face {
    font-family: "ttc";
    src: url("https://assets.iallofrance.com/assets/fonts/tt_commons_demibold.otf") format("opentype"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_demibold-webfont.woff2") format("woff2"),url("https://assets.iallofrance.com/assets/fonts/tt_commons_demibold-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal
}
:root {
    --document-width: 100vw; /* Dynamically set to viewport width */
    --gutter-size: max(20px, calc((var(--document-width) - 75rem) / 2)); /*68 */
    --media-gutter-size: max(20px, calc((var(--document-width) - 1728px) / 2));
    --hoverTransition: 150ms cubic-bezier(0.215,0.61,0.355,1);
    --inactiveSize: 98;
    --activeSize: 110;
    --iconScale: 1;
    --gradient-start: 222.2 84% 98%;
    --gradient-end: 222.2 84% 90%;
}
@media (max-width: 768px) {
    :root {
        --inactiveSize: 68;
        --activeSize: 80;
    }
  }
.left-gutter {
    width: var(--gutter-size); /* Set the width to the calculated gutter size */
    float: left; /* Ensure the div aligns to the left */
    height: 100%; /* Adjust this based on your layout */
    background-color: lightgray; /* Optional: for visual reference */
}
.arrow {
    display: inline-block;
    transition: transform var(--hoverTransition);
}
.arrow-animation:hover .arrow {
    transform: translateX(6px);
}
body {
    margin: 0;
    font-family: "ttc", sans-serif;
    color: #111922;
    /* background-color: rgb(250, 250, 250); */
    background-color: white;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
a {
    text-decoration: none;
    color: inherit;
}
.underline {
    text-decoration: underline;
}
@-webkit-keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
/* @keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} */

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.4);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}





/* navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between; /* Distributes items evenly */
    align-items: center; /* Aligns items vertically in the center */
    margin-left: auto;
    margin-right: auto;
    padding-right: 2rem;
    padding-left: 2rem;
    box-sizing: border-box;
    background-color: white;
    font-size: 18px;
    width: 100%;
    position: fixed;
    top: 0;
    transition: top 0.3s;
    z-index: 10;
}
.logo {
    margin-left: 20px;
    width: 80px;
}
.logo-link {
    display: flex;
    align-items: center;
}
.logo-text {
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: animatedgradient 6s ease infinite alternate;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 600;
    margin-left: 10px;
}

/* Style the "IA" part in blue */
.ia-part {
    color: #0d288f;
}

/* Style the "llo" part in different color */
.llo-part {
    color: #79163c;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.navbar-contact-b {
    margin-bottom: 11px;
    margin-top: 11px;
}
.nav-link {
    position: relative;
    text-decoration: none;
    padding: 0.5rem;
    color: black; /* Change text color */
}
.nav-link::after {
    content: ''; /* Necessary for creating the pseudo-element */
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px; /* Height of the underline */
    background-color: black; /* Color of the underline */
    transition: width 0.3s ease; /* Smooth animation */
}

.nav-link:hover::after {
    width: 100%; /* Make the underline full width on hover */
}

.actions {
    display: flex;
    gap: 1rem;
}
.navbar-contact {
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    -webkit-animation: animatedgradient 6s ease infinite alternate;
    animation: animatedgradient 6s ease infinite alternate;
    background-size: 300% 300%;
    border: 1px solid rgba(0, 0, 0, 0);
    color: #fff;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 12px;
    padding-right: 12px;
    flex: 1;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    margin-bottom: 11px;
    margin-top: 11px;
}
.mobile-navbar-contact {
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    -webkit-animation: animatedgradient 6s ease infinite alternate;
    animation: animatedgradient 6s ease infinite alternate;
    background-size: 300% 300%;
    border: 1px solid rgba(0, 0, 0, 0);
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    flex: 1;
    border-radius: 8px;
    font-size: 21px;
    cursor: pointer;
    outline: none;
    margin-bottom: 11px;
    margin-top: 11px;
}
.navbar-contact:hover {
    filter: brightness(1.2);

}
/* Mobile Menu Styles */
.mobile-menu-button {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #111922;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mobile-nav-link {
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-actions {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
}

/* Show mobile menu when active */
.mobile-menu.active {
    display: block;
    opacity: 1;
}

/* Hamburger animation when menu is open */
.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width: 767px) {  
    .mobile-menu-button {
        display: inline;
    }

    .nav-links,
    .actions {
        display: none; /* Hide desktop navigation */
    }

    .navbar {
        justify-content: space-between;
        padding: 0 15px;
    }
    .navbar-contact {
        display: inline;

    }
}



/* hero */
.hero {
    padding: 20px 24px 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    /* min-height: calc(100vh - 120px);  need journals*/
     /* no offer */
    margin-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta {
    max-width: 480px;
    background: lightgray;
    padding: 5px;
    border-radius: 13px;
}

.email-form {
    display: flex;
    gap: 12px;
}

.email-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}
.cta-button {
    padding: 8px 16px;
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    -webkit-animation: animatedgradient 6s ease infinite alternate;
    animation: animatedgradient 6s ease infinite alternate;
    background-size: 300% 300%;
    flex: 1;
    border-radius: 8px;
    font-size: 18px;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.cta-button-hero {
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: black;
    border: none;
    cursor: pointer;
    /* Remove the gradient from here */
    background: white; /* Button background */
    z-index: 1;
}

.cta-button-hero::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* This is where we put the animated gradient background */
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: 10px;
    z-index: -1;
    animation: animatedgradient 6s ease infinite alternate;
    background-size: 300% 300%;
}
.cta-button-hero::after {
    content: '';
    position: absolute;
    top: 2px;  /* Border thickness */
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 8px;
    z-index: -1;
}
.cta-button-hero:hover {
    background: #34C759;
}
.cta-button-hero:hover::before {
    background: #34C759;
}


.cta-button:hover {
    filter: brightness(1.2);

}

.no-credit-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    justify-content: center;
    margin-top: 5px;
}
.phone-container {
    width: 280px;
    height: 580px;
    background: #fff;
    border-radius: 40px;
    border: 3px solid #333;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    align-self: center;
}

.offer {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #ca071a;
    margin-top: 60px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 4rem 0px 4rem;
    box-sizing: border-box;
}
.offer-text {
    color: #fffdf5;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0px auto;;
    align-content: center;
    display: block;
}
.offer-text-mobile {
    display: none;
}

.offer-arrow {
    margin-left: auto;
    color: #fffdf5
}

.dynamic-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 35px;
    background-color: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}


.handwritten-note {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
}

.handwritten-text {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #FF4B4B;
    white-space: nowrap;
}

.phone-arrow {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-left: 4px solid #FF4B4B;
    border-bottom: 4px solid #FF4B4B;
    transform: rotate(-45deg);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-45deg) translate(0, 0);
    }
    50% {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
}

/* .dynamic-island:hover {
    width: 200px;
} */

.dynamic-island-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    opacity: 0.9;
}

.dynamic-island-icon {
    font-size: 16px;
    max-height: 16px;
}

.dynamic-island-text {
    white-space: nowrap;
    overflow: hidden;
}

.phone-content {
    padding: 60px 20px 20px;
    background-color: #FDFAF6;
    height: calc(100% - 80px);
    border-radius: 37px;
}

.contacts-header {
    margin-bottom: 20px;
}

.contacts-header h2 {
    font-size: 24px;
    margin: 0;
    color: #1c1c1e;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 968px) {
    .contacts-list {
        max-height: 280px; /* Slightly smaller on mobile */
        overflow-y: auto;
    }
    .contacts-list::-webkit-scrollbar {
        width: 6px;
    }
    .contacts-list::-webkit-scrollbar-track {
        background: transparent;
    }
    .contacts-list::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 3px;
    }
}
.contact-item {
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: flex;
}
.contact-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.contact-item.selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 12px;
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-weight: 600;
    color: #1c1c1e;
}

.contact-role {
    font-size: 14px;
    color: #8e8e93;
}

elevenlabs-convai {
    display: none !important;
}


.try-call-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: white;
    padding: 4px 16px 4px 4px;
    /* width: 175px; */
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    /* Remove original border */
    border: none;
    /* Add gradient border effect */
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    background-size: 300% 300%;
    -webkit-animation: animatedgradient 6s ease infinite alternate;
    animation: animatedgradient 6s ease infinite alternate;
    /* position: relative; */
    z-index: 0;
    transform-origin: center;
}

.try-call-button:hover {
    background: #34C759;
}

.try-call-button.pulse-animation {
    animation: 
        pulse 0.5s ease-in-out,
        animatedgradient 6s ease infinite alternate;
    filter: brightness(1.2);
}

.phone-circle {
    min-width: 32px;
    height: 32px;
    background-color: #34C759;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.phone-circle-end {
    min-width: 32px;
    height: 32px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
}

.hero_footer_logos {
    text-align: center;
    z-index: 10;
    width: 100vw;
    padding: 14px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    margin-top: 40px;
    /* position: absolute; 
    bottom: 0; need journals */
}

.hero_footer_logos::-webkit-scrollbar {
    display: none;
}

.hero_footer_logos img {
    margin: 0 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.hero_footer_logos img:hover {
    opacity: 1;
}

.seen-on-text {
    font-size: 10px;
    opacity: 0.5;
    margin: 0;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive design */
@media (max-width: 968px) {
    .hero {
        padding: 20px 2.5% 40px;
        width: 100%;
        box-sizing: border-box;
        /* no offer */
        margin-top: 60px;
    }
    .offer {
        padding: 0px;
    }
    .offer-text {
        display: none;
    }
    .offer-text-mobile {
        display: block;
        color: #fffdf5;
        font-size: 1rem;
        font-weight: 400;
        margin: 0px auto;;
        align-content: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        margin: 0 auto;
    }

    .email-form {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
    }

    .phone-container {
        width: 100%;
        height: auto;
        aspect-ratio: 0.483; 
        border-radius: calc(100cqw* 0.1428571429);
        border: 3px solid #333;
    }
    .phone-content {
        border-radius: calc((100vw* 0.1428571429) - 3px);
    }
}

@media (max-width: 768px) {
    .hero_footer_logos {
        padding: 10px;
    }
    
    .hero_footer_logos img {
        margin: 0 10px;
        height: 20px;
        width: auto;
    }
}


/* section podcast */
.podcast {
    /* height: 200px; */
    /* top: -60px; */
    /* margin-bottom: -60px; */
    z-index: 2;
    position: relative;
    padding-left: 20px;
}
.podcast-slider {
    margin: 0;
}
.podcast-item {
    width: 100%;
    max-width: 41rem;
    padding: 5px;
    margin-left: 30px;
    font-size: 20px;
    cursor: pointer;
}

.podcast-item-separator {
    width: 100%;
    height: 100%;
}

.video-container {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcast-child {
    flex: 0 0 60%;
    text-align: start;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
}
.podcast-industry {
    font-size: 14px;
    color: black;
    margin: 10px 15px;
}




/* section header */
.section-header {
    margin: auto;
    width: 70%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 40px;
}
.section-header-title {
    font-size: 36px;
    margin-bottom: 18px;
    margin-top: 18px;
}
.section-header-subtitle {
    color: #111922;
    font-size: 21px;
    margin-bottom: 11px;
    margin-top: 11px;
}
@media screen and (max-width: 767px) {
    .section-header {
        width: 90%;
        margin-top: 60px;
        margin-bottom: 30px;
        text-align: start;
    }
    .section-header-title {
        /* font-size: 48px; */
        font-size: 31px;
    }
    .section-header-subtitle {
        font-size: 18px;
        font-weight: 300;
    } 
}


/* features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px;
    max-width: 1344px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    box-shadow: 0 12px 34px #20345926;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    padding: 32px;
}

.feature-label {
    color: #1a73e8;
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.feature-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

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

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

/* SA graphic */
.sa-figure {
    width: 100%;
    margin: 0;
    height: 100%;
    position: relative;
}
.figure-grid-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rainbow-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow interaction with the icons */
    z-index: 1;
}

.figure-grid {
    --iconSize: var(--inactiveSize);
    position: relative;
    display: grid;
    /* Default mobile layout (4 columns) */
    grid-template-columns: repeat(3, var(--iconSize));
    grid-template-areas:
        "clienta clientb clientc"
        "vous iaphone database"
        "calendar dashboard crm";
    gap: 12px;
    z-index: 2;
    margin: 0 auto; /* Center the grid */
    max-width: calc(4 * var(--iconSize) + 3 * 12px); /* Constrain mobile width */
    margin-top: 40px;
}

/* Desktop layout (6 columns) */
@media screen and (min-width: 768px) and (min-device-width: 768px) {
    .figure-grid {
        grid-template-columns: repeat(5, var(--iconSize));
        row-gap: 60px;
        grid-template-areas:
            "clienta . clientb . clientc"
            "vous . iaphone . database"
            "calendar . dashboard . crm";
        max-width: calc(6 * var(--iconSize) + 5 * 12px); /* Constrain desktop width */
    }
}

.figure-icon {
    /* opacity: 0; */
    position: relative;
    width: calc(1px* var(--iconScale)* var(--inactiveSize));
    height: calc(1px* var(--iconScale)* var(--inactiveSize));
    transform-origin: center;
    transform-box: fill-box;
    z-index: 3;
}
.figure-icon-link {
    font-weight: var(--linkWeight, 425);
    cursor: pointer;
    color: darkgoldenrod;
    opacity: var(--linkOpacity, 1);
    transition: var(--hoverTransition);
    transition-property: color, opacity;
    outline: none;
}
.figure-icon-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 1px* var(--activeSize) / 2);
    left: calc(50% - 1px* var(--activeSize) / 2);
    width: calc(1px* var(--activeSize));
    height: calc(1px* var(--activeSize));
    border-radius: 8px;
    transform-origin: center;
    transform-box: fill-box;
    transform: scale(calc(var(--iconScale)* var(--inactiveSize) / var(--activeSize)));
}
.figure-icon-icon-outline {
    border: calc(1px / var(--iconScale)) solid #c4ccd8;
    background: #f6f9fc;
}
.figure-icon-icon-solid {
    background: #fff;
    box-shadow: 0 12.6px 25.2px -11.5733px rgba(50, 50, 93, .25), 0 7.56px 15.12px -7.56px rgba(0, 0, 0, .1);
    opacity: 0;
}
.figure-icon-logo {
    transform-origin: top center;
    transform-box: fill-box;
}
.figure-icon-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    text-align: center;
    font: var(--fontWeightSemibold) 12px / 15px var(--fontFamily);
    letter-spacing: .2px;
    color: #2e3a55;
    opacity: 0;
}
.clienta{
    grid-area: clienta;
}
.clientb{
    grid-area: clientb;
}
.clientc{
    grid-area: clientc;
}

.iaphone{
    grid-area: iaphone;
}
.vous{
    grid-area: vous;
}
.database{
    grid-area: database;
}
.dashboard{
    grid-area: dashboard;
}
.calendar{
    grid-area: calendar;
}
.crm{
    grid-area: crm;
}

/*faq */
.faq-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: auto;
    padding: 10px;
}

@media screen and (min-width: 768px) and (min-device-width: 768px) {
    .faq-container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.faq-column {
    flex: 1;
}

.faq-item {
    border: 2px solid #1a73e8;
    padding: 10px;
    background: white;
    color: black;
    border-radius: 16px;
    margin-bottom: 10px;
}
.faq-item:hover {
    color: #1E3A5F;
  } 

.faq-question {
    padding: 5px;
    cursor: pointer;
    display: flex;

    justify-content: space-between;
    align-items: center;
    /* font-weight: bold; */
}
.plus {
    font-size: 22px;
    margin-left: 10px;
}
.faq-item.active .plus {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 5px;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
    background: white;
}
.faq-item.active {
    color: black;
    background: white;
    border: 2px solid #1a73e8;
}





/* final cta */
.final-cta-section {
    width: 100%;
    background-color: #1d1b22;  /* Soft black background */
    color: #eeedf1;          /* White text for contrast */
}
.final-cta {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
}
.reassurance {
    font-size: 16px;
}
.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.final-cta .main-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.final-cta .secondary-text {
    margin-bottom: 2rem;
    font-weight: 500;
}

.final-cta .cta-text {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-cta .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #b8860b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.final-cta .cta-button:hover {
    background-color: #986f0a;
}

.demo-cta {
    background-color: #e8f0fe; 
    padding-top: 20px;
    padding-bottom: 20px;
}
.too-good {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #0d47a1;
}

.too-good-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.too-good h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.too-good p {
    font-size: 1.2rem;
    line-height: 1.6;
    /* color: #666; */
    margin-bottom: 32px;
}

.why-us {
    padding: 4rem 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.advantage-card {
    background: #FDFAF6;;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}
.advantage-icon {
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
    line-height: 1;
    display: flex;
    position: relative;
    box-shadow: 0 7px 29px #64646f33;
}
.img-emoji {
    width: 1.75rem;
    height: 1.75rem;
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.5;
}

.advantage-wide {
    grid-column: span 2;
}

/* Responsive design */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-wide {
        grid-column: span 1;
    }
}
.comparison {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}


.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.table-iallo-logo {
    border: .125rem solid #fff;
    border-radius: 50%;
    width: 2rem;
    overflow: hidden;
    box-shadow: 0 7px 29px #64646f33;
}
.table-iallo {
    display: flex;
        align-items: center;
        gap: 10px;
}
.table-iallo-logo-img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
    border: 0;
}

.comparison-table td:nth-child(2) {
    background-color: #f5f9ff;
    color: #0d47a1;
}

/* Also style the header for IAllo */
.comparison-table th:nth-child(2) {
    background-color: #e8f0fe;
    color: #0d47a1;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: 500;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}
/* footer */
.footer {
    padding: 40px var(--gutter-size);
    /* margin-top: 40px; */
    background-color: #1d1b22;  /* Soft black background */
    color: #eeedf1;
}

.footer hr {
    border: none;
    border-top: 1px solid #333;  /* Darker line for contrast */
    margin: 0 0 40px 0;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer .column {
    flex: 1;
}

.footer .column p {
    margin: 0;
    line-height: 1.6;
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-tos {
    font-size: 14px;
    color: #999;              /* Lighter gray for secondary text */
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}

/* how it works */
.how-it-works {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    grid-column-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: grid;
}

.step {
    grid-column-gap: 16px;
    grid-row-gap: 1.25rem;
    background-color: #faf9fa;
    border-radius: .875rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-content: start;
    min-height: 28rem;
    display: flex;
    overflow: hidden;
}
.step-header {
    text-align: left;
    padding: 2rem 1.5rem .5rem;
}
.step-number {
    color: #b6b0c1;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .step-number {
        display: none;
    }
    
    .step-number::before {
        display: block;
        content: attr(data-mobile-number);
    }
}

.sa-steps-subtitle {
    margin: 16px 0px;
    font-size: 28px;
    font-weight: 300;
}
.sa-steps-text {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 300;
}
.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #202222;
    margin-top: 0;
    margin-bottom: 0;
}
.step-img-container {
    justify-content: center;
    max-height: 18.5rem;
    margin-top: auto;
    display: flex;
}
.step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.features-grid {
    display: flex;
    flex-direction: column;
    padding: 0 2rem 2rem;
    gap: 1rem;
    margin-top: auto;
}

.feature {
    color: #202222;
    background-color: #fff;
    border: .125rem solid #fff;
    border-radius: 2rem;
    padding: .375rem 1.125rem;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 7px 29px #64646f33;
    width: fit-content; /* Only take up as much width as needed */
}

/* First feature aligned left */
.feature:nth-child(1) {
    align-self: center;
}

/* Second feature aligned center */
.feature:nth-child(2) {
    align-self: flex-start;
}

/* Third feature aligned right */
.feature:nth-child(3) {
    align-self: flex-end;
}

/* Fourth feature aligned center */
.feature:nth-child(4) {
    align-self: flex-start;
}

/* Fifth feature aligned left */
.feature:nth-child(5) {
    align-self: center;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Mobile Adjustments */
@media screen and (max-width: 767px) {
    .faq-container {
        flex-direction: column; /* Stack columns vertically */
        margin: 0 20px; /* Add some margin on the sides */
    }

    .faq-column {
        width: 100%; /* Take full width */
    }

    .faq-item {
        margin-bottom: 15px; /* Add some space between items */
    }
}

/* How It Works Mobile Adjustments */
@media screen and (max-width: 767px) {
    .steps-container {
        display: flex; /* Change to flex for mobile */
        flex-direction: column; /* Stack steps vertically */
        gap: 2rem; /* Add space between steps */
    }

    .step {
        width: 100%; /* Take full width */
        margin-bottom: 20px; /* Add space between steps */
    }
}

.gains {
    padding: 80px 24px;
    background-color: #FDFAF6;
    margin-top: 20px;
    margin-bottom: 20px;
}

.gains-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.gains-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: 24px; */
}

.gain-item {
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gain-item:hover {
    background-color: #f8f9fa;
}

.gain-item.active {
    background-color: #f8f9fa;
    border: 2px solid darkgoldenrod;
}

.gain-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111922;
}

.gain-item p {
    color: #666;
    line-height: 1.5;
}

.gains-right {
    flex: 1;
    position: sticky;
    top: 100px;
}

.gain-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
}

.gain-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .gains-container {
        flex-direction: column;
    }
    
    .gains-right {
        position: relative;
        top: 0;
        align-self: center;
    }
}
/* Contact page special css */
.contact-section {
    margin-top: 80px;
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(
        to bottom right,
        hsl(var(--gradient-start)),
        hsl(var(--gradient-end))
    );
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
    justify-items: center;
}

.login-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.login-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.error-message {
    color: #ca071a;
    margin-top: 1rem;
    display: none;
}

.login-button {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 12px;
    font-size: 18px;
    margin-bottom: 11px;
    margin-top: 11px;
    align-content: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

.login-hint {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.login-hint a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-hint a:hover {
    color: black;
}

.slack-button {
    align-items: center;
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 48px;
    display: inline-flex;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    text-decoration: none;
    width: 236px;
    margin: 20px 0;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.connection-status.success {
    background-color: #d1fae5;
    color: #065f46;
}

.disconnect-button {
    background-color: #fee2e2;
    color: #991b1b;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.disconnect-button:hover {
    background-color: #fecaca;
}

/* Update the cta-button class to work with the arrow animation */
.cta-button {
    /* ... existing styles ... */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Remove any conflicting transitions from cta-button */
.cta-button.arrow-animation {
    transition: background-color 0.2s;
}
/* Calculator Section */
.calculator {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1c1c1e;
}

.calculator-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.calculator-form {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.input-group {
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1c1c1e;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #1a73e8;
    outline: none;
}

.calculator-results {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.result-card.primary {
    background: #1a73e8;
    color: white;
}

.result-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.calculator-note {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .calculator-form {
        flex-direction: column;
        align-items: center;
    }

    .input-group {
        width: 100%;
    }

    .calculator-results {
        flex-direction: column;
        align-items: center;
    }

    .result-card {
        width: 100%;
    }
}

.legal-notice {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    text-align: left;
}

.legal-notice a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-notice {
        width: 100%; /* Full width on mobile */
        margin-top: 20px;
        font-size: 11px;
        transform: none;
        padding: 0 15px;
    }
}

.login-error-message {
    color: #ca071a;
    margin-top: 1rem;
}
