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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

body > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
header {
    padding: 30px 60px 30px 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 80px;
    opacity: 0.85;
    color: #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 25px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: white;
}

.login-btn {
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    min-height: 50px;
    height: auto;
    width: auto;
    min-width: 180px;
    max-width: 100%;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    word-break: keep-all;
}

.menu-toggle {
    display: none;
    top: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    z-index: 1001;
}

.menu-toggle i {
    display: block;
}

/* Section Hero */
.section-hero {
    position: relative;
    display: block;
    width: 1600px;
    height: 856px;
    z-index: 100;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom left, #5C5C5C 0%, #1E1E1E 39%, #000000 100%);
    color: white;
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
}

.section-hero .content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
}

.background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.oval {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.05;
    mix-blend-mode: normal;
}

.oval-1 {
    top: -1359px;
    left: -1467px;
    width: 2242px;
    height: 2242px;
}

.oval-2 {
    top: -1040.5px;
    left: -1137px;
    width: 1645px;
    height: 1644px;
}

.oval-3 {
    top: -774px;
    left: -880px;
    width: 1151px;
    height: 1151px;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.dots {
    position: absolute;
    top: 124px;
    left: 1405px;
    width: 122.7px;
    height: 100px;
    background-image:
        radial-gradient(circle, white 2.5px, transparent 2.5px);
    background-size: 12px 15px;
    background-position: 0 0;
    z-index: 2;
    opacity: 0.9;
}



.buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.lets-go {
    background: linear-gradient(180deg, rgba(30, 30, 30, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(25, 25, 25, 1) 100%);
    color: white;
    padding: 0 28px;
    height: 58px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 3px solid rgba(255, 255, 255, 1);
    box-shadow: -5px 5px 0px rgba(128, 128, 128, 1);
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.lets-go::after {
    content: '↗';
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.lets-go:hover {
    background: linear-gradient(180deg, #20D95F 0%, #000000 100%);
    box-shadow: -5px 5px 0px rgba(128, 128, 128, 1);
}

.lets-go:active {
    background: linear-gradient(180deg, #20D95F 0%, #000000 100%);
    box-shadow: -5px 5px 0px rgba(128, 128, 128, 1);
}

.whatsapp {
    background: #20D95F;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.whatsapp::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



.footer-text {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.app-stores {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 58px;
    padding: 0;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn img,
.google-play-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-store-logo,
.google-play-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-store-logo svg,
.google-play-logo svg {
    width: 32px;
    height: 32px;
}

.app-store-logo img,
.google-play-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.app-store-text,
.google-play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-text-small,
.google-play-text-small {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-store-text-large,
.google-play-text-large {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2px;
}

.app-store-text-large {
    font-weight: 700;
}

/* Section Admin - Dossier Administratif */
.section-admin {
    text-align: center;
    position: relative;
    background: #ffffff;
    overflow: visible;
    color: #000000;
    width: 100%;
    display: block;
    z-index: 1;
    box-sizing: border-box;
    left:178px;
}

.section-admin-arrow {
    position: absolute;
    left: 1160px;
    top: 490px;
    width: 100px;
    height: 150px;
    z-index: 10;
    object-fit: contain;
    display: block;
}

.section-admin-arrow-gray {
    position: absolute;
    left: 0;
    top: 618px;
    width: 100px;
    height: 150px;
    z-index: 10;
    object-fit: contain;
    display: block;
}

.section-admin-circles {
    position: relative;
    top: -850px;
    width: 100%;
    pointer-events: none;
    overflow: visible;

}

.admin-circle {
    position: absolute;
    border-radius: 50%;
    background: #B2B2B2;
    opacity: 0.05;
    z-index: 0;
}

.admin-circle-1 {
    left: 106px;
    top: 270px;
    width: 1031px;
    height: 1031px;
    background: #B2B2B2;
    opacity: 0.08;
}

.admin-circle-2 {
    left: 211.2px;
    top: 375.2px;
    width: 820.59px;
    height: 820.59px;
    background: #6C6C6C;
    opacity: 0.08;
}

.admin-circle-3 {
    left: 323.42px;
    top: 487.42px;
    width: 596.16px;
    height: 596.16px;
    background: #363636;
    opacity: 0.08;
}

.admin-circle-4 {
    left: 442.65px;
    top: 606.65px;
    width: 357.69px;
    height: 357.69px;
    background: #000000;
    opacity: 0.08;
}

.section-admin-content {
   padding-top: 70px;
   padding-bottom: 124px;
}

.section-admin>.flow-container {
    position: relative;
    z-index: 2;
}

.section-admin-content>h1,
.section-admin-content>p {
    position: relative;
    z-index: 2;
}

.section-admin-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #181818;
    line-height: 1.3;
}

.section-admin-content h1 .title-sub {
    font-size: 60px;
    display: inline-block;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: normal;
}

.section-admin-content>p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 19px;
    font-weight: 400;
    width: 933px;
    max-width: 933px;
    height: 64px;
    color: #161C2D;
    line-height: 1.6;
}

.flow-container {
    position: relative;
    width: 1089px;
    height: 326px;
    left: 78px;
    z-index: 2;
}

.flow-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
    z-index: 2;
    margin-bottom: 29px;
    align-items: start;
    justify-items: start;
}

.flow-row-1 {
    margin-top: 60px;
}

.flow-row-2 {
    margin-left: 0;
}

.flow-row-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 0;
    align-items: start;
    gap: 20px;
    justify-items: start;
    justify-content: flex-start;
}

.flow-row-3 .flow-item[data-number="7"] {
    grid-column: 1;
}

.flow-row-3 .flow-logo-container {
    grid-column: 2;
}

.flow-row-3 .flow-item[data-number="7"] .flow-line-extend {
    flex: 1;
    min-width: 0;
}

.flow-item {
    text-align: left;
    position: relative;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flow-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    width: 100%;
    justify-content: flex-start;
}

.flow-item-header h3 {
    margin: 0;
    flex-shrink: 0;
}


.flow-number {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.flow-item[data-number="1"] .flow-number::after {
    content: "1";
}

.flow-item[data-number="2"] .flow-number::after {
    content: "2";
}

.flow-item[data-number="3"] .flow-number::after {
    content: "3";
}

.flow-item[data-number="4"] .flow-number::after {
    content: "4";
}

.flow-item[data-number="5"] .flow-number::after {
    content: "5";
}

.flow-item[data-number="6"] .flow-number::after {
    content: "6";
}

.flow-item[data-number="7"] .flow-number::after {
    content: "7";
}

.flow-item[data-number="2"] .flow-number,
.flow-item[data-number="4"] .flow-number,
.flow-item[data-number="6"] .flow-number {
    background: #E5E5E5;
    border: none;
    color: #666666;
}

.flow-line-extend {
    flex: 1;
    min-width: 0;
    height: 2.5px;
    background: #000000;
    flex-shrink: 0;
}

.flow-item[data-number="2"] .flow-line-extend,
.flow-item[data-number="4"] .flow-line-extend,
.flow-item[data-number="6"] .flow-line-extend {
    background: #E5E5E5;
}

.flow-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    color: #000000;
}

.flow-item[data-number="6"] h3 {
    color: #333333;
    font-weight: 600;
}

.flow-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    max-width: 320px;
    width: 100%;
    margin: 0;
    color: #666666;
    line-height: 1.6;
    padding-left: 35px;
    text-align: left;
    align-self: flex-start;
}

.flow-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-left: 0;
    align-self: center;
    width: 100%;
}

.flow-logo-container .logo-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-logo-container .logo-img {
    height: 90px;
    width: 203px;
    display: block;
    object-fit: contain;
}


/* Logo Icon Styles */
.logo-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    display: block;
}

/* Section CRM Features */
.section-crm-features {
    position: relative;
    width: 1600px;
    height: 1150px;
    overflow: visible;
    background: transparent;
    color: white;
}

.section-crm-content-wrapper {
    position: relative;
    align-items: center;
    top: -550px;
    height: 1150px;
    background: linear-gradient(to bottom left, #5C5C5C 0%, #1E1E1E 39%, #000000 100%);
    z-index: 1;
}

.section-crm-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 350px;
    text-align: center;
    z-index: 1;
}
.section-crm-dots {
    position: relative;
    width: 155px;
    height: 140px;
    left: 205px;
    bottom: 200px;
    background-image: 
        radial-gradient(circle, white 3.5px, transparent 2.5px);
    background-size: 19.375px 15.56px;
    background-position: 0 0;
    z-index: 10;
    opacity: 1;
    pointer-events: none;
}





.video-container {
    position: relative;
    background: transparent;
    margin-bottom: 0;
    z-index: 9999;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;

    margin-bottom: 100px;
    width: 100%;
    max-width: 1110px;
    height: 652px;
    margin-left: auto;
    margin-right: auto;
    background: #0a0a0a;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('../images/v84_484.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 3;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 28px solid #e74c3c;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
}

.play-button svg {
    display: none;
}

.video-overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 4;
    font-family: 'Inter', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.video-overlay-text .coord-1,
.video-overlay-text .coord-2 {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

.video-marker {
    position: absolute;
    top: 35%;
    left: 55%;
    width: 0;
    height: 0;
    z-index: 4;
    transform: translate(-50%, 0);
}

.video-marker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #FF3A44;
    border-radius: 50% 50% 50% 0;
    transform: translateX(-50%) rotate(-45deg);
    border: 2px solid white;
}

.video-marker::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.section-crm-title {
    font-size: 46px;
    font-weight: bold;
    line-height: 1.3;
    max-width: 1100px;
    color: white;
    text-align: center;
    width: 1110px;
    font-family: 'SF Pro Display', sans-serif;
    
}


.section-crm-subtitle {
    font-size: 19px;
    font-weight: 100;
    max-width: 900px;
    line-height: 1.6;
    color: #ffffff;
    padding-bottom: 40px;
    text-align: center;
    font-family: 'SF Pro Display', sans-serif;
    opacity: 0.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.feature-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #ffffff;
    flex-shrink: 0;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: white;
    line-height: 1.3;
    text-align: left;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

/* Section Interface */
.section-interface {
    background: #ffffff;
    text-align: center;
    left: 198px;
    top: 400px;
    position: relative;
}

.interface-container {
    max-width: 1400px;
}

.interface-title {
    font-size: 56px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 20px;
    line-height: 1.2;
}

.interface-subtitle {
    font-size: 19px;
    color: #161C2D;
    opacity: 0.7;
    width: 1278px !important;
    max-width: none !important;
    line-height: 1.6;
}

.interface-buttons {
    display: inline-flex;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 10px;
    gap: 0;
    justify-content: center;
    position: relative;
}

.interface-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #181818;
    font-size: 16px;
    font-weight: medium;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    
}

.interface-btn:first-child {
    margin-right: 0;
}

.interface-btn.selected {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.interface-btn:hover:not(.selected) {
    background: rgba(255, 255, 255, 0.5);
}

.interface-btn.selected:hover {
    background: #ffffff;
}

.phone-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 750px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.phone-carousel::before,
.phone-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.phone-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

.phone-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

.phone-swiper {
    width: 100%;
    touch-action: pan-x pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 650px;
    overflow: hidden;
    box-sizing: border-box;
}

.phone-swiper .swiper-wrapper {
    touch-action: pan-x;
    will-change: transform;
    height: 650px;
    align-items: center;
}

.phone-swiper .swiper-slide {
    width: 300px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(1px);
    opacity: 0.6;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transform-origin: center center;
    box-sizing: border-box;
    margin: 0 -15px;
}

.phone-swiper .swiper-slide-active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.3);
    z-index: 2;
}

.phone-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-swiper .swiper-slide-active img {
    max-width: 319px;
    max-height: 532px;
}

.phone-swiper .swiper-slide:not(.swiper-slide-active) img {
    max-width: 246px;
    max-height: 532px;
}

.phone-swiper .swiper-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin-top: 0;
}

.phone-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cccccc;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    margin: 0 4px;
}

.phone-swiper .swiper-pagination-bullet-active {
    background: #000000;
    width: 24px;
    height: 8px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-swiper .swiper-pagination-bullet:hover {
    background: #999999;
    transform: scale(1.2);
}

.phone-swiper .swiper-slide-shadow-left,
.phone-swiper .swiper-slide-shadow-right {
    background-image: none;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    flex-shrink: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    position: relative;
    z-index: 1;
}

.carousel-arrow.swiper-button-disabled {
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
    background: #ffffff;
    border: 1px solid #000000;
}

.carousel-arrow.swiper-button-disabled svg {
    stroke: #000000;
    color: #000000;
}

.carousel-arrow:hover:not(.swiper-button-disabled) {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active:not(.swiper-button-disabled) {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #000000;
    width: 10px;
    height: 10px;
}

/* Section Support */
.section-support {
    padding-top: 300px;
    background-color: #ffffff;
    color: #333333;
    position: relative;
    overflow: hidden;
    width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'SF Pro Display', sans-serif;
}

.support-container {
    width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    box-sizing: border-box;
}

.support-badge {
    margin: 0 auto 16px;
    display: block;
}

.support-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.support-title {
    font-size: 70px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #000000;
    position: relative;
    z-index: 2;
}

.support-subtitle {
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 40px 0;
    color: #000000;
    position: relative;
    z-index: 2;
}

.headset-left {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 280px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.headset-right {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.support-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.support-benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    color: #333333;
    font-weight: 500;
}

.benefit-item::before {
    content: '✓';
    width: 16px;
    height: 16px;
    background: none;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: bold;
}


/* Section Contact */
.contact-section {
    background: #F8F8F8;
    color: #000;
    width: 1600px;
    height: 700px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 0;
}

/* Main row: Left mockup, Header (with form), and Right mockup */
.contact-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    min-height: 682px;
    padding-top: 0;
    margin-top: 0;
}

.contact-header {
    padding-top: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 780px;
    flex: 1;
    order: 2;
    align-self: flex-start;
}

.contact-header h2 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
    margin-top: 0;
}

.contact-header p {
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
    max-width: 780px;
    margin: 0 0 40px 0;
    color: #000000;
    line-height: 1.5;
    text-align: right;
}


.phone-mockup {
    width: auto;
    height: 500px;
    position: relative;
    flex-shrink: 0;
}

.phone-mockup.left {
    order: 1;
    align-self: flex-end;
}

.phone-mockup.right {
    order: 3;
    align-self: flex-start;
    flex-shrink: 0;

}

.contact-form {
    width: 545px;
    height: 330px;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

.phone-mockup img {
    width: 100%;
    height: auto;
}

.form-group {
    margin-bottom: 28px;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    font-size: 16px;
    margin-top: 40px;

}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    color: #333;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 700;
    color: #000;
    font-size: 16px;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 400;
    color: #000;
    font-size: 16px;
}


/* Footer Section */
.site-footer {
    background: #f8f9fa;
    color: #666;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 1600px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #000;
}

.download-column .app-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.app-badge {
    height: 56px;
    width: auto;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.copyright {
    color: #888;
}

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

.social-link {
    color: #666;
    font-size: 20px;
    transition: color 0.2s;
    text-decoration: none;
}

.social-link:hover {
    color: #000;
}

/* Blurry effect for screens wider than 1600px to cover empty spaces */
@media (min-width: 1601px) {
    body {
        position: relative;
        overflow-x: hidden;
    }
    
    body::before,
    body::after {
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        width: calc((100vw - min(100vw, 1920px)) / 2);
        min-width: 0;
        max-width: 200px;
        z-index: 9999;
        pointer-events: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: none; /* Hide blur effect when sections extend */
    }
    
    body::before {
        left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    }
    
    body::after {
        right: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    }
    
    /* All sections extend proportionally from 1600px to fit wider screens */
    .section-hero {
        width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .section-admin {
        width: min(100vw, 1920px);
        left: auto;
        margin: 0 auto;
    }
    
    .section-crm-features {
        width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .section-interface {
        width: min(100vw, 1920px);
        left: auto;
        margin: 0 auto;
    }
    
    .section-support {
        width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .contact-section {
        width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .site-footer {
        width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    /* Scale internal elements proportionally */
    /* Admin section elements - maintain centered alignment */
    .section-admin-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .section-admin-content>p {
        width: calc(933px * (min(100vw, 1920px) / 1600px));
        max-width: calc(933px * (min(100vw, 1920px) / 1600px));
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center flow-container - remove left offset and center it */
    .flow-container {
        left: auto;
        margin-left: auto;
        margin-right: auto;
        width: calc(1089px * (min(100vw, 1920px) / 1600px));
        position: relative;
    }
    
    /* Scale circles and arrows proportionally - align with centered flow-container */
    /* Flow-container is centered with margin: 0 auto, so calculate circles relative to its position */
    /* Formula: (section_width - flow_width) / 2 + (original_circle_left - original_flow_left) * scale */
    .admin-circle-1 {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (106px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(270px * (min(100vw, 1920px) / 1600px));
        width: calc(1031px * (min(100vw, 1920px) / 1600px));
        height: calc(1031px * (min(100vw, 1920px) / 1600px));
    }
    
    .admin-circle-2 {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (211.2px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(375.2px * (min(100vw, 1920px) / 1600px));
        width: calc(820.59px * (min(100vw, 1920px) / 1600px));
        height: calc(820.59px * (min(100vw, 1920px) / 1600px));
    }
    
    .admin-circle-3 {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (323.42px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(487.42px * (min(100vw, 1920px) / 1600px));
        width: calc(596.16px * (min(100vw, 1920px) / 1600px));
        height: calc(596.16px * (min(100vw, 1920px) / 1600px));
    }
    
    .admin-circle-4 {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (442.65px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(606.65px * (min(100vw, 1920px) / 1600px));
        width: calc(357.69px * (min(100vw, 1920px) / 1600px));
        height: calc(357.69px * (min(100vw, 1920px) / 1600px));
    }
    
    .section-admin-arrow {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (1160px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(490px * (min(100vw, 1920px) / 1600px));
        width: calc(100px * (min(100vw, 1920px) / 1600px));
        height: calc(150px * (min(100vw, 1920px) / 1600px));
    }
    
    .section-admin-arrow-gray {
        left: calc((min(100vw, 1920px) - 1089px * (min(100vw, 1920px) / 1600px)) / 2 + (0px - 78px) * (min(100vw, 1920px) / 1600px));
        top: calc(618px * (min(100vw, 1920px) / 1600px));
        width: calc(100px * (min(100vw, 1920px) / 1600px));
        height: calc(150px * (min(100vw, 1920px) / 1600px));
    }
    
    /* Also scale the section-admin-circles top offset proportionally */
    .section-admin-circles {
        top: calc(-850px * (min(100vw, 1920px) / 1600px));
    }
    
    /* Hero section elements scale proportionally */
    .dots {
        left: calc(1405px * (min(100vw, 1920px) / 1600px));
    }
    
    /* CRM Features section elements scale proportionally */
    .section-crm-dots {
        left: calc(205px * (min(100vw, 1920px) / 1600px));
    }
    
    .section-crm-title {
        width: calc(1110px * (min(100vw, 1920px) / 1600px));
        max-width: calc(1100px * (min(100vw, 1920px) / 1600px));
    }
    
    .section-crm-subtitle {
        max-width: calc(900px * (min(100vw, 1920px) / 1600px));
    }
    
    /* Interface section elements scale proportionally */
    .interface-subtitle {
        width: calc(1278px * (min(100vw, 1920px) / 1600px)) !important;
    }
}

/* Additional responsive adjustments for containers at wider screens */
@media (min-width: 1601px) {
    .contact-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .support-container {
        width: 100%;
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .interface-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .footer-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
        padding: 80px 60px 40px;
    }
    
    .section-admin-content {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .section-crm-content-wrapper {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .video-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .features-grid {
        max-width: calc(1200px * (min(100vw, 1920px) / 1600px));
        margin: 0 auto;
    }
}
@media (min-width: 1601px) {
    .contact-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .support-container {
        width: 100%;
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .interface-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .footer-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
        padding: 80px 60px 40px;
    }
    
    .section-admin-content {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .section-crm-content-wrapper {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .video-container {
        max-width: min(100vw, 1920px);
        margin: 0 auto;
    }
    
    .features-grid {
        max-width: calc(1200px * (min(100vw, 1920px) / 1600px));
        margin: 0 auto;
    }
}
/* ============================================
   RESPONSIVE DESIGN FOR SCREENS UNDER 1600px
   ============================================ */

/* Tablets and smaller desktops (768px - 1599px) */
@media (max-width: 1599px) {
    /* Make all sections full width */
    .section-hero,
    .section-admin,
    .section-crm-features,
    .section-interface,
    .section-support,
    .contact-section,
    .site-footer {
        width: 100%;
        left: 0;
        margin: 0;
    }

    /* Header adjustments */
    header {
        padding: 30px 30px 20px 30px;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .menu-toggle {
        display: none;
    }

    .logo-img {
        height: 35px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        margin: 5px 15px;
        font-size: 14px;
    }

    .language-switcher {
        margin-left: 15px;
        margin-right: 15px;
    }

    .login-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: auto;
        min-width: 180px;
        max-width: 100%;
        height: auto;
        min-height: 30px;
        white-space: nowrap;
    }

    /* Hero section */
    .section-hero {
        height: auto;
        min-height: 600px;
        padding: 30px 20px 80px 20px;
        margin-top: 0;
    }

    .content {
        max-width: 100%;
        padding: 0 20px;
    }

    h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .dots {
        display: none;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    .lets-go,
    .whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .app-stores {
        flex-direction: column;
        gap: 15px;
    }

    .app-store-btn,
    .google-play-btn {
        width: 200px;
        height: 60px;
    }

    /* Admin section */
    .section-admin {
        padding: 40px 20px;
    }

    .section-admin-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .section-admin-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .section-admin-content h1 .title-sub {
        font-size: 40px;
    }

    .section-admin-content > p {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        height: auto;
        padding: 0 20px;
    }

    .section-admin-arrow,
    .section-admin-arrow-gray {
        display: none;
    }

    .section-admin-circles {
        display: none;
    }

    .flow-container {
        width: 100%;
        left: 0;
        height: auto;
        padding: 0 20px;
    }

    .flow-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .flow-row-1 {
        margin-top: 40px;
    }

    .flow-row-3 {
        grid-template-columns: 1fr;
    }

    .flow-row-3 .flow-item[data-number="7"] {
        grid-column: 1;
    }

    .flow-row-3 .flow-logo-container {
        grid-column: 1;
        margin: 20px 0;
    }

    .flow-item p {
        padding-left: 0;
        max-width: 100%;
    }

    /* CRM Features section */
    .section-crm-features {
        height: auto;
        min-height: 800px;
    }

    .section-crm-content-wrapper {
        top: 0;
        height: auto;
        padding: 80px 20px;
    }

    .section-crm-content {
        top: 0;
        padding: 0;
    }

    .section-crm-dots {
        display: none;
    }

    .video-container {
        padding: 0 20px;
    }

    .video-player {
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        margin-bottom: 40px;
    }

    .section-crm-title {
        font-size: 32px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .section-crm-subtitle {
        font-size: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        padding: 0 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    /* Interface section */
    .section-interface {
        top: 0;
        padding: 60px 20px;
    }

    .interface-container {
        max-width: 100%;
    }

    .interface-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .interface-subtitle {
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .phone-carousel {
        height: 500px;
        margin-top: 30px;
    }

    .phone-swiper {
        height: 450px;
    }

    .phone-swiper .swiper-wrapper {
        height: 450px;
    }

    .phone-swiper .swiper-slide {
        width: 250px;
        height: 450px;
    }

    .phone-swiper .swiper-slide-active img {
        max-width: 250px;
        max-height: 400px;
    }

    .phone-swiper .swiper-slide:not(.swiper-slide-active) img {
        max-width: 200px;
        max-height: 350px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    /* Support section */
    .section-support {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support-container {
        width: 100%;
        padding: 40px 20px;
    }

    .headset-left,
    .headset-right {
        display: none;
    }

    .support-title {
        font-size: 42px;
    }

    .support-subtitle {
        font-size: 32px;
    }

    .support-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .support-benefits {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Contact section */
    .contact-section {
        height: auto;
        padding: 60px 20px;
    }

    .contact-container {
        max-width: 100%;
    }

    .contact-top-row {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .phone-mockup {
        display: none;
    }

    .contact-header {
        order: 1;
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
    }

    .contact-header h2 {
        font-size: 36px;
        text-align: left;
    }

    .contact-header p {
        text-align: left;
        font-size: 14px;
    }

    .contact-form {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    /* Footer */
    .site-footer {
        padding: 60px 20px 40px;
    }

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

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile phones (max-width: 767px) */
@media (max-width: 767px) {
    /* Header - Mobile menu */
    header {
        padding: 30 20px 15px 20px;
        position: relative;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-top: 0;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo-img {
        height: 30px;
    }

    .language-switcher {
        order: 2;
        margin: 0;
        flex: 0 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }

    .language-switcher button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .menu-toggle {
        display: block;
        order: 3;
        margin-left: 0;
        flex-shrink: 0;
    }

    .login-btn {
        display: none;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        margin-top: 0;
        z-index: 1000;
        order: 999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        font-size: 16px;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    /* Show login button in mobile menu */
    nav.active + .language-switcher + .menu-toggle + .login-btn,
    nav.active ~ .login-btn {
        display: flex;
        position: absolute;
        top: calc(100% + 250px);
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        max-width: none;
        margin: 0;
        z-index: 1001;
    }

    /* Hero section */
    .section-hero {
        min-height: 500px;
        padding: 0 15px 60px 15px;
        margin-top: 0;
    }

    .content {
        padding: 0 15px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .buttons {
        margin-bottom: 40px;
    }

    .lets-go,
    .whatsapp {
        height: 50px;
        font-size: 14px;
    }

    .app-store-btn,
    .google-play-btn {
        width: 160px;
        height: 50px;
    }

    .footer-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    /* Admin section */
    .section-admin {
        padding: 30px 15px;
    }

    .section-admin-content {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .section-admin-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-admin-content h1 .title-sub {
        font-size: 28px;
        display: block;
        margin-top: 10px;
    }

    .section-admin-content > p {
        font-size: 14px;
        padding: 0 10px;
    }

    .flow-container {
        padding: 0 10px;
    }

    .flow-row {
        gap: 25px;
        margin-bottom: 30px;
    }

    .flow-row-1 {
        margin-top: 30px;
    }

    .flow-item h3 {
        font-size: 13px;
    }

    .flow-item p {
        font-size: 12px;
    }

    .flow-logo-container .logo-img {
        height: 60px;
        width: auto;
    }

    /* CRM Features section */
    .section-crm-features {
        min-height: 600px;
    }

    .section-crm-content-wrapper {
        padding: 60px 15px;
    }

    .section-crm-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-crm-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .video-player {
        margin-bottom: 30px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button::after {
        border-left-width: 20px;
        border-top-width: 12px;
        border-bottom-width: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .feature-content {
        text-align: center;
    }

    .feature-title {
        font-size: 16px;
        text-align: center;
    }

    .feature-description {
        font-size: 13px;
        text-align: center;
    }

    /* Interface section */
    .section-interface {
        padding: 40px 15px;
    }

    .interface-title {
        font-size: 28px;
    }

    .interface-subtitle {
        font-size: 14px;
    }

    .interface-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .interface-btn {
        width: 100%;
        padding: 12px;
    }

    .phone-carousel {
        height: 400px;
        margin-top: 20px;
    }

    .phone-swiper {
        height: 350px;
    }

    .phone-swiper .swiper-wrapper {
        height: 350px;
    }

    .phone-swiper .swiper-slide {
        width: 200px;
        height: 350px;
    }

    .phone-swiper .swiper-slide-active {
        transform: scale(1.2);
    }

    .phone-swiper .swiper-slide-active img {
        max-width: 200px;
        max-height: 300px;
    }

    .phone-swiper .swiper-slide:not(.swiper-slide-active) img {
        max-width: 150px;
        max-height: 250px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow-left {
        left: 10px;
    }

    .carousel-arrow-right {
        right: 10px;
    }

    /* Support section */
    .section-support {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .support-container {
        padding: 30px 15px;
    }

    .support-badge {
        width: 80px;
        height: auto;
    }

    .support-tagline {
        font-size: 12px;
    }

    .support-title {
        font-size: 28px;
    }

    .support-subtitle {
        font-size: 22px;
    }

    .support-description {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .benefit-item {
        font-size: 14px;
        text-align: center;
    }

    /* Contact section */
    .contact-section {
        padding: 40px 15px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-header {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .contact-header h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-header p {
        font-size: 13px;
        text-align: center;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input {
        font-size: 14px;
        padding: 14px 16px;
        width: 100%;
    }

    .submit-btn {
        font-size: 16px;
        padding: 16px;
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 30px;
    }

    .info-item {
        flex-direction: row;
        text-align: left;
        gap: 8px;
        flex: 0 1 auto;
        min-width: 0;
    }

    .info-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .info-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .info-content {
        align-items: flex-start;
        min-width: 0;
    }

    .info-label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .info-value {
        font-size: 12px;
        word-break: break-word;
    }

    /* Footer */
    .site-footer {
        padding: 40px 15px 30px;
    }

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

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h4 {
        font-size: 14px;
        text-align: left;
    }

    .footer-column ul {
        text-align: left;
    }

    .footer-column li {
        text-align: left;
    }

    .footer-column a {
        font-size: 13px;
        text-align: left;
    }

    .download-column {
        text-align: left;
    }

    .app-badges {
        align-items: flex-start;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .badge-link {
        display: block;
        text-align: left;
        width: auto;
    }

    .app-badge {
        height: 45px;
        width: auto;
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .copyright {
        font-size: 12px;
        text-align: left;
        width: 100%;
    }

    .social-icons {
        justify-content: flex-start;
        width: 100%;
    }
}

/* Very small phones (max-width: 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .section-admin-content h1 {
        font-size: 26px;
    }

    .section-admin-content h1 .title-sub {
        font-size: 22px;
    }

    .section-crm-title {
        font-size: 20px;
    }

    .interface-title {
        font-size: 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .support-subtitle {
        font-size: 18px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .phone-swiper .swiper-slide {
        width: 180px;
        height: 320px;
    }

    .phone-swiper .swiper-slide-active img {
        max-width: 180px;
        max-height: 280px;
    }

    .phone-swiper .swiper-slide:not(.swiper-slide-active) img {
        max-width: 130px;
        max-height: 220px;
    }
}

