/* Font Face Declarations */
@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/peydaWeb-extralight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Peyda', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Main Container */
.container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin-top: 141px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 49px;
}

/* Hero Robots Container */
.hero-robots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    flex-direction: row-reverse;
    z-index: 1;
    pointer-events: none;
    padding: 0 49px;
    direction: rtl;
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    width: 316px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    top: -110px;
}

.hero-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-heading-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.4px;
    width: 316px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-heading span {
    display: block;
    margin-bottom: 0;
}


.hero-robot-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.hero-robot-image {

    pointer-events: none;
    max-width: none;
    display: block;
}

/* Left Side Robots Positioning */
.hero-robot-left-1 {
    position: relative;
    right: 100%;
}

.hero-robot-left-1 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-left-1 .hero-robot-image {
}

.hero-robot-left-2 {
    position: relative;
    bottom: 352px;
}

.hero-robot-left-2 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-left-2 .hero-robot-image {
}

.hero-robot-left-3 {
    position: relative;
    bottom: 187px;
    left: 20%;
}

.hero-robot-left-3 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-left-3 .hero-robot-image {
}

/* Right Side Robots Positioning */
.hero-robot-right-1 {
    position: relative;
    bottom: 100px;
}

.hero-robot-right-1 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-right-1 .hero-robot-image {
}

.hero-robot-right-2 {
    position: relative;
    bottom: 100px;
    left: 160%;
}

.hero-robot-right-2 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-right-2 .hero-robot-image {
}

.hero-robot-right-3 {
    position: relative;
    bottom: 100px;
}

.hero-robot-right-3 .hero-robot-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-robot-right-3 .hero-robot-image {
}

/* Floating Animations with Rotation */
@keyframes floatRotate1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes floatRotate2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    30% {
        transform: translateY(-10px) rotate(-1.5deg);
    }
    60% {
        transform: translateY(-14px) rotate(1.5deg);
    }
    90% {
        transform: translateY(-6px) rotate(0deg);
    }
}

@keyframes floatRotate3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-9px) rotate(1deg);
    }
    40% {
        transform: translateY(-13px) rotate(-1.5deg);
    }
    70% {
        transform: translateY(-7px) rotate(0.5deg);
    }
}

@keyframes floatRotate4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    35% {
        transform: translateY(-11px) rotate(-2deg);
    }
    55% {
        transform: translateY(-9px) rotate(1deg);
    }
    80% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

@keyframes floatRotate5 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1.5deg);
    }
}

@keyframes floatRotate6 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    30% {
        transform: translateY(-11px) rotate(-1deg);
    }
    60% {
        transform: translateY(-9px) rotate(1.5deg);
    }
    90% {
        transform: translateY(-13px) rotate(0deg);
    }
}

/* Apply animations to robots */
.hero-robot-left-1 {
    animation: floatRotate1 5s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-robot-left-2 {
    animation: floatRotate2 5.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-robot-left-3 {
    animation: floatRotate3 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-robot-right-1 {
    animation: floatRotate4 5.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-robot-right-2 {
    animation: floatRotate5 5.3s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hero-robot-right-3 {
    animation: floatRotate6 6.2s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Description Section */
.description-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -110px;
}

.description-wrapper {
    position: relative;
    width: 809px;
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
}

.description-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.description-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 48px;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.24px;
    white-space: nowrap;
    margin-right: 201px;
    transform: translateX(100%);
}

.description-text-wrapper {
    position: relative;
    width: 809px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.description-text {
    font-family: 'Peyda', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #FFFFFF;
    text-align: justify;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.18px;
    width: 100%;
}

.description-text span {
    display: block;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    width: 80%;
    margin-top: 75px;
}

.features-wrapper {
    position: relative;    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 59px;
}

/* Features Heading */
.features-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.32px;
    flex: 1;
    min-width: 0;
}

/* Features Grid */
.features-grid {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
}

.features-grid-inner {
    position: relative;
    width: 840px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.features-row {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features-row-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Feature Item */
.feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-shrink: 0;
}

.feature-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    overflow: hidden;
}

.feature-text-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.feature-text-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow: hidden;
}

.feature-title-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.feature-title {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    width: 100%;
}

.feature-title span {
    display: inline;
}

/* Specific widths for different feature items */
.feature-item[data-node-id="817:216"] .feature-text-inner {
    width: 377px;
}

.feature-item[data-node-id="817:231"] .feature-text-inner {
    width: 336px;
}

.feature-item[data-node-id="817:225"] .feature-text-inner,
.feature-item[data-node-id="817:243"] .feature-text-inner,
.feature-item[data-node-id="817:237"] .feature-text-inner,
.feature-item[data-node-id="817:249"] .feature-text-inner {
    width: 352px;
}

.feature-description-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.feature-description {
    font-family: 'Peyda', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.44px;
    width: 100%;
}

/* Feature Bullet */
.feature-bullet-wrapper {
    position: relative;
    flex-shrink: 0;
}

.feature-bullet {
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.feature-bullet-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.feature-bullet-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border-radius: 100px;
}

/* Laptop Section */
.laptop-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.laptop-container {
    position: relative;
    z-index: 1;
}

.laptop-img {
    height: 503px;
    width: 902px;
}

/* Laptop Sidebar (right side, no scroll) */
.laptop-sidebar-container {
    position: absolute;
    top: 5%;
    right: 11%;
    bottom: 9%;
    width: 16%;
    overflow: hidden;
}

.laptop-sidebar {
    width: 100%;
    height: 100%;
    object-position: top center;
}

/* Laptop Screenshot (left side, scrollable) */
.laptop-screenshot-container {
    position: absolute;
    top: 5%;
    left: 11%;
    right: 26%;
    bottom: 9%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.laptop-screenshot-container::-webkit-scrollbar {
    width: 4px;
}

.laptop-screenshot-container::-webkit-scrollbar-track {
    background: transparent;
}

.laptop-screenshot-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.laptop-screenshot-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.laptop-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Smart Management Section */
.smart-management-section {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 75px;
    direction: rtl;
    justify-content: center;
}

.smart-management-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row-reverse;
}

 
.smart-management-image {
    width: 100%;
}

/* Content */
.smart-management-content {
    position: relative;
    flex-shrink: 0;
}

.smart-management-content-inner {
    position: relative;
    width: 579px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

/* Heading */
.smart-management-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-management-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.36px;
    flex: 1;
    min-width: 0;
}

/* Divider */
.smart-management-divider {
    position: relative;
    width: 568px;
    height: 0;
    flex-shrink: 0;
}

.smart-management-divider-img {
    position: absolute;
    inset: 0 -1px 0 0;
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

/* Features List */
.smart-management-features {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.smart-management-list {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    list-style: disc;
    list-style-position: inside;
    width: 579px;
}

.smart-management-item {
    line-height: 1.5;
    margin-right: 36px;
    margin-bottom: 32px;
}

.smart-management-item:last-child {
    margin-bottom: 0;
}

.smart-management-item-title {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    direction: rtl;
}

.smart-management-item-text {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    direction: rtl;
    font-style: normal;
}

/* Features List Section */
.features-list-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    direction: rtl;
}

.features-list-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

/* Features List Container */
.features-list-container {
    position: relative;
    flex-shrink: 0;
}

.features-list {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    list-style: disc;
    list-style-position: inside;
    width: 579px;
    display: block;
}

.features-list-item {
    line-height: 1.5;
    margin-right: 36px;
    margin-bottom: 32px;
}

.features-list-item:last-child {
    margin-bottom: 0;
}

.features-list-title {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    direction: rtl;
}

.features-list-text {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    direction: rtl;
    font-style: normal;
}

/* Smartphone Image */


.features-list-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}

/* Quote Section */
.quote-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    padding: 0 20px;
}

.quote-text {
    font-family: 'Peyda', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.66px;
    width: 844px;
    max-width: 100%;
}

/* ============================================
   RESPONSIVE STYLES - Desktop styles preserved above
   ============================================ */

/* Small Desktop (up to 1440px) */
@media (max-width: 1440px) {
    .container {
    }
    
    .hero-section {
    }
    
    .hero-robots {
    }
    
    .hero-content {
    }
    
    .hero-heading {
    }
    
    /* Scale robot positions */
    .hero-robot-left-1 {
        right: 30%;
    }
    
    .hero-robot-left-2 {
        bottom: 352px;
        left: 60%;
    }
    
    .hero-robot-left-3 {
        bottom: 170px;
        left: 75%;
    }
    
    .hero-robot-right-1 {
        right: 50%;
    }
    
    .hero-robot-right-2 {
        left: 50%;
    }
    
    .hero-robot-right-3 {
        right: 50%;
    }
    
    .description-section {
        margin-top: -80px;
        padding: 0 20px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 750px;
    }
    
    .description-heading {
        margin-right: 0;
        transform: translateX(0);
    }
    
    .description-text-wrapper {
        width: 100%;
    }
    
    .features-section {
        width: 90%;
    }
    
    .features-grid-inner {
        width: 100%;
        max-width: 800px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 400px;
    }
    
    .feature-item[data-node-id="817:216"] .feature-text-inner,
    .feature-item[data-node-id="817:231"] .feature-text-inner,
    .feature-item[data-node-id="817:225"] .feature-text-inner,
    .feature-item[data-node-id="817:243"] .feature-text-inner,
    .feature-item[data-node-id="817:237"] .feature-text-inner,
    .feature-item[data-node-id="817:249"] .feature-text-inner {
        width: 100%;
    }
    
    .laptop-container {
        width: 100%;
        max-width: 850px;
    }
    
    .laptop-img {
        width: 100%;
        height: auto;
    }
    
    .smart-management-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    

    
    .smart-management-content-inner {
        width: 100%;
        max-width: 550px;
    }
    
    .smart-management-divider {
        width: 100%;
        max-width: 550px;
    }
    
    .smart-management-list {
        width: 100%;
    }
    
    .features-list-wrapper {
        flex-direction: column;
    }
    
    .features-list {
        width: 100%;
        max-width: 550px;
    }
    
    
    .quote-section {
        padding: 0 20px;
    }
    
    .quote-text {
        width: 100%;
        max-width: 800px;
    }
    .hero-robot-left-1 {
        right: 0%;
    }
    .hero-robot-left-2 {
        display: none;
    }
    .hero-robot-left-3 {
        display: none;
    }
    .hero-robot-right-1 {
        right: 0;
        top: 0;
        /* height: 140%; */
    }
    .hero-robot-right-2 {
        display: none;
    }
    .hero-robot-right-3 {
        display: none;
    }
}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        margin-top: 100px;
        min-height: 450px;
        padding: 0 20px;
    }
    
    .hero-robots {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 280px;
        top: -80px;
    }
    
    .hero-heading {
        font-size: 36px;
        line-height: 48px;
        width: 100%;
        max-width: 280px;
    }
    
    
    .description-section {
        margin-top: -60px;
        padding: 0 30px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 700px;
    }
    
    .description-heading {
        font-size: 22px;
        line-height: 36px;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .features-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .features-heading {
        font-size: 28px;
        line-height: 40px;
    }
    
    .features-grid-inner {
    }
    
    .features-row-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 18px;
    }
    
    .laptop-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .laptop-container {
        max-width: 100%;
    }
    
    .smart-management-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .smart-management-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    

    .smart-management-content-inner {
        width: 100%;
        max-width: 600px;
        align-items: center;
    }
    
    .smart-management-heading {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
    }
    
    .smart-management-divider {
        width: 100%;
        max-width: 600px;
    }
    
    .smart-management-list {
        width: 100%;
        font-size: 22px;
    }
    
    .smart-management-item {
        margin-right: 30px;
        margin-bottom: 24px;
    }
    
    .smart-management-item-title,
    .smart-management-item-text {
        font-size: 22px;
    }
    
    .features-list-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .features-list-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .features-list {
        width: 100%;
        max-width: 600px;
        font-size: 22px;
    }
    
    .features-list-item {
        margin-right: 30px;
        margin-bottom: 24px;
    }
    
    .features-list-title,
    .features-list-text {
        font-size: 22px;
    }
    
    
    .quote-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .quote-section {
        padding: 0 30px;
    }
    
    .quote-text {
        width: 100%;
        max-width: 700px;
        font-size: 26px;
        line-height: 1.3;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 190px;
    }
    
    .hero-robot-left-1 {
        top: 50%;
    }
    .hero-robot-right-1 {
        top: -215px;
    }
    .hero-content {
        width: 100%;
        max-width: 240px;
        top: -30px;
    }
    .hero-robots {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        flex-direction: column;
        z-index: 1;
        pointer-events: none;
        padding: 0 49px;
        direction: rtl;
    }
    
    .hero-heading {
        font-size: 28px;
        line-height: 38px;
        width: 100%;
        max-width: 260px;
    }
    
    .description-section {
        margin-top: 150px;
        padding: 0 20px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .description-heading-wrapper {
        justify-content: center;
    }
    
    .description-heading {
        font-size: 20px;
        line-height: 32px;
        text-align: center;
        white-space: normal;
    }
    
    .description-text-wrapper {
        width: 100%;
        align-items: center;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    
    .features-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .features-wrapper {
        gap: 40px;
    }
    
    .features-heading {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
    
    .features-grid-inner {
        width: 100%;
        max-width: 100%;
        gap: 24px;
    }
    
    .features-row-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-item-tall {
        height: auto;
    }
    
    .feature-content-wrapper {
        gap: 16px;
    }
    
    .feature-bullet {
        width: 20px;
        height: 20px;
    }
    
    .feature-bullet-circle {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .laptop-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .laptop-container {
        width: 100%;
        position: relative;
    }
    
    .laptop-img {
        width: 100%;
        height: auto;
    }
    
    .laptop-sidebar-container,
    .laptop-screenshot-container {
        position: absolute;
    }
    
    .smart-management-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .smart-management-wrapper {
        gap: 24px;
    }
    

    
    .smart-management-content-inner {
        gap: 24px;
    }
    
    .smart-management-heading {
        font-size: 28px;
        line-height: 38px;
    }
    
    .smart-management-divider {
        width: 100%;
    }
    
    .smart-management-list {
        font-size: 20px;
    }
    
    .smart-management-item {
        margin-right: 24px;
        margin-bottom: 20px;
    }
    
    .smart-management-item-title,
    .smart-management-item-text {
        font-size: 20px;
    }
    
    .features-list-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .features-list-wrapper {
        gap: 24px;
    }
    
    .features-list {
        font-size: 20px;
    }
    
    .features-list-item {
        margin-right: 24px;
        margin-bottom: 20px;
    }
    
    .features-list-title,
    .features-list-text {
        font-size: 20px;
    }
    
    
    .quote-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .quote-section {
        padding: 0 20px;
    }
    
    .quote-text {
        width: 100%;
        max-width: 100%;
        font-size: 22px;
        line-height: 1.3;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    
    .hero-robot-left-1 {
        top: 50%;
    }
    .hero-robot-right-1 {
        top: -215px;
    }
    .hero-content {
        width: 100%;
        max-width: 240px;
        top: -30px;
    }
    
    .hero-heading {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
        max-width: 240px;
    }
    
    
    .description-section {
        padding: 0 16px;
    }
    
    .description-heading {
        font-size: 18px;
        line-height: 28px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .features-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .features-wrapper {
        gap: 32px;
    }
    
    .features-heading {
        font-size: 20px;
        line-height: 28px;
    }
    
    .features-grid-inner {
        gap: 20px;
    }
    
    .features-row-content {
        gap: 12px;
    }
    
    .feature-content-wrapper {
        gap: 12px;
    }
    
    .feature-bullet {
        width: 18px;
        height: 18px;
    }
    
    .feature-bullet-circle {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .laptop-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .smart-management-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .smart-management-wrapper {
        gap: 20px;
    }
    
    .smart-management-content-inner {
        gap: 20px;
    }
    
    .smart-management-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .smart-management-list {
        font-size: 18px;
    }
    
    .smart-management-item {
        margin-right: 20px;
        margin-bottom: 16px;
    }
    
    .smart-management-item-title,
    .smart-management-item-text {
        font-size: 18px;
    }
    
    .features-list-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .features-list-wrapper {
        gap: 20px;
    }
    
    .features-list {
        font-size: 18px;
    }
    
    .features-list-item {
        margin-right: 20px;
        margin-bottom: 16px;
    }
    
    .features-list-title,
    .features-list-text {
        font-size: 18px;
    }
    
    .quote-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .quote-section {
        padding: 0 16px;
    }
    
    .quote-text {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 1.3;
    }
}

