/* Yone E-commerce Landing Page Styles */

:root {
    /* Primary Colors */
    --yone-primary: #2A9D8F;
    --yone-primary-dark: #1F7268;
    --yone-primary-light: #4DB6A9;

    /* Secondary Colors */
    --yone-secondary: #9FA6B2;
    --yone-secondary-dark: #818A98;
    --yone-secondary-light: #BFC5CE;

    /* Accent Colors */
    --yone-accent: #2A9D8F;
    --yone-accent-dark: #1F7268;
    --yone-accent-light: #4DB6A9;

    /* Neutral Colors */
    --yone-dark: #264653;
    --yone-light: #E0F2F1;
    --yone-white: #FFFFFF;

    /* Alert Colors */
    --yone-danger: #DC4C64;
    --yone-warning: #E4A11B;
    --yone-info: #54B4D3;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;

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

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-xl: 2rem;
    --border-radius-full: 9999px;

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

/* General Styles */
html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--yone-dark);
    background-color: var(--yone-light);
    line-height: 1.5;
    overflow-x: hidden;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* RTL Bootstrap Overrides */
.rtl-form .form-control {
    text-align: right;
    direction: rtl;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    transition: all 0.3s ease;
}

.rtl-form .form-floating>label {
    right: 0;
    left: auto;
    transform-origin: top right;
    color: #6c757d;
}

.rtl-form .form-floating>.form-control:focus~label,
.rtl-form .form-floating>.form-control:not(:placeholder-shown)~label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--yone-primary);
}

.rtl-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--yone-primary-light);
    box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.15);
}

.rtl-form .form-control:hover {
    background-color: #ffffff;
}

/* Back to Top Button */
.yone-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--yone-primary);
    color: var(--yone-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.yone-back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yone-back-to-top:hover {
    background-color: var(--yone-primary-dark);
    color: var(--yone-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.yone-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Button Styles */
.yone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.yone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: -1;
    transition: transform 0.6s;
    transform: scaleX(0);
    transform-origin: right;
}

.yone-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.yone-btn-primary {
    background-color: var(--yone-primary);
    color: var(--yone-white);
}

.yone-btn-primary:hover {
    background-color: var(--yone-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(42, 157, 143, 0.25);
}

.yone-btn-accent {
    background-color: var(--yone-accent);
    color: var(--yone-white);
}

.yone-btn-accent:hover {
    background-color: var(--yone-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(42, 157, 143, 0.25);
}

.yone-btn-outline {
    background-color: transparent;
    color: var(--yone-primary);
    border: 2px solid var(--yone-primary);
    box-shadow: none;
}

.yone-btn-outline:hover {
    background-color: rgba(42, 157, 143, 0.05);
    color: var(--yone-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(42, 157, 143, 0.15);
    border-color: var(--yone-primary-dark);
}

.yone-btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

.yone-btn-icon {
    margin-right: 0.5rem;
}

/* Header Styles */
.yone-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--yone-white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: var(--spacing-md) 0;
}

/* Partners Section */
.yone-partners {
    padding: 2rem 0;
    background-color: var(--yone-light);
    margin-top: 74px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.yone-partners-title {
    font-size: 1.1rem;
    color: var(--yone-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.yone-partners-slider {
    padding: 1rem 0;
}

.yone-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.yone-partner-item img {
    max-height: 30px;
    max-width: 100%;
    object-fit: contain;
}

.yone-partner-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.yone-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yone-logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--yone-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.yone-logo img {
    height: 70px !important;
    margin-right: 0.5rem;
}

.yone-header-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.yone-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.yone-nav-link {
    color: var(--yone-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.yone-nav-link:hover {
    color: var(--yone-primary);
}

/* Hero Section */
.yone-hero {
    padding-top: 80px;
    padding-bottom: var(--spacing-3xl);
    background-color: var(--yone-light);
    color: var(--yone-dark);
    position: relative;
    overflow: hidden;
}

.yone-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 0;
}

.yone-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.yone-hero-content {
    position: relative;
    z-index: 1;
}

.yone-hero-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.yone-hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.yone-hero-features li i {
    color: var(--yone-primary);
    margin-left: 0.75rem;
    font-size: 1.25rem;
}

.yone-hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
}

.yone-app-mockup {
    position: relative;
    z-index: 2;
}

.yone-app-screenshot {
    max-width: 280px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.yone-character {
    position: absolute;
    bottom: -20px;
    left: 0;
    max-height: 350px;
    z-index: 1;
}

.yone-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.yone-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--yone-dark);
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.yone-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    color: var(--yone-dark);
    opacity: 0.85;
    font-weight: 400;
    max-width: 90%;
}

.yone-hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.yone-features {
    padding: var(--spacing-3xl) 0;
    background-color: var(--yone-white);
    position: relative;
}

.yone-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

/* Features Grid Layout */
.yone-features-grid {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.yone-features-grid .row {
    margin-bottom: 3rem;
    align-items: stretch;
}

.yone-features-grid .row:last-child {
    margin-bottom: 0;
}


.yone-feature-card {
    background-color: var(--yone-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.yone-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yone-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(42, 157, 143, 0.1);
}

.yone-feature-card:hover::before {
    transform: scaleX(1);
}

.yone-feature-header {
    text-align: center;
    margin-bottom: 2.5rem;
    flex-shrink: 0;
}

.yone-feature-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yone-feature-header p {
    color: var(--yone-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.yone-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yone-feature-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: var(--yone-dark);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.4;
    min-height: 3rem;
}

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

.yone-feature-list li i {
    color: var(--yone-primary);
    margin-left: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.yone-features-content {
    height: 100%;
}

.yone-feature-content-inner {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.yone-feature-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yone-primary);
}

.yone-feature-content-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--yone-dark);
}

.yone-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.yone-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.yone-feature-list li i {
    color: var(--yone-primary);
    margin-left: 0.75rem;
    font-size: 1.1rem;
}

.yone-feature-image {
    position: relative;
}

.yone-feature-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(5px);
    z-index: -1;
}

/* Additional Features Cards */
.yone-additional-features {
    position: relative;
    z-index: 1;
}

.yone-additional-feature-card {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.yone-additional-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--yone-primary);
    transition: height 0.4s ease;
}

.yone-additional-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.yone-additional-feature-card:hover::before {
    height: 100%;
}

.yone-additional-feature-icon {
    font-size: 2.5rem;
    color: var(--yone-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.yone-additional-feature-card:hover .yone-additional-feature-icon {
    transform: scale(1.1);
}

.yone-additional-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yone-dark);
}

.yone-additional-feature-description {
    color: var(--yone-dark);
    opacity: 0.7;
    line-height: 1.6;
}

/* Section Headers */
.yone-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yone-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--yone-dark);
    position: relative;
    display: inline-block;
}

.yone-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yone-primary);
    border-radius: 2px;
}

.yone-section-subtitle {
    font-size: 1.1rem;
    color: var(--yone-dark);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Banner */
.yone-cta-banner {
    padding: 3rem 0;
    background-color: var(--yone-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.yone-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

.yone-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.yone-cta-title {
    color: var(--yone-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.yone-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}





.yone-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.yone-pricing-guarantee {
    margin-top: 3rem;
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.yone-guarantee-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--yone-primary);
}

.yone-guarantee-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--yone-dark);
}

.yone-guarantee-content p {
    color: var(--yone-secondary);
    margin-bottom: 0;
}

/* Registration Banner Section */
.yone-registration-banner {
    padding: var(--spacing-2xl) 0;
    background-color: var(--yone-light);
    color: var(--yone-dark);
    position: relative;
    overflow: hidden;
}

.yone-registration-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../media/backgrounds/leaves-pattern.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    opacity: 0.2;
    z-index: 0;
}

.yone-registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.yone-registration-content {
    text-align: right;
}

.yone-registration-content .yone-section-title {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

.yone-registration-content .yone-section-title::after {
    right: 0;
    left: auto;
    transform: none;
}

.yone-registration-content .yone-section-subtitle {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

.yone-subscribe-form {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.yone-privacy-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.yone-privacy-note a {
    color: var(--yone-primary);
    text-decoration: none;
    position: relative;
}

.yone-privacy-note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--yone-primary);
    transition: width 0.3s ease;
}

.yone-privacy-note a:hover::after {
    width: 100%;
}

.yone-registration-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.yone-registration-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--yone-light), transparent);
    z-index: 1;
}

.yone-person-image {
    max-height: 400px;
    position: relative;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* App Download Section */
.yone-app-download {
    padding: var(--spacing-3xl) 0;
    background-color: var(--yone-white);
    position: relative;
    overflow: hidden;
}

.yone-app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.yone-app-features-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.yone-app-content {
    max-width: 100%;
}

.yone-app-mockup-mobile {
    margin: 0 auto;
    max-width: 280px;
}

.yone-app-screenshot-mobile {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    border: 10px solid var(--yone-white);
}

.yone-app-features-wrapper {
    margin: 2rem 0;
}

.yone-app-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.yone-app-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(42, 157, 143, 0.1);
}

.yone-app-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(42, 157, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    color: var(--yone-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.yone-app-feature-content {
    flex: 1;
}

.yone-app-feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--yone-dark);
    font-weight: 700;
}

.yone-app-feature-content p {
    font-size: 0.95rem;
    color: var(--yone-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.yone-app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.yone-app-button {
    display: flex;
    align-items: center;
    background-color: var(--yone-dark);
    color: var(--yone-white);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.yone-app-button-apple {
    background-color: #000;
}

.yone-app-button-android {
    background-color: #0F9D58;
}

.yone-app-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    filter: brightness(1.1);
}

.yone-app-button i {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.yone-app-button-text {
    text-align: left;
}

.yone-app-button-small {
    font-size: 0.75rem;
    display: block;
    opacity: 0.8;
}

.yone-app-button-large {
    font-size: 1rem;
    font-weight: 700;
}

.yone-app-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

.yone-app-stars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.yone-app-stars span {
    margin-left: 0.5rem;
    color: var(--yone-dark);
    font-weight: 700;
}

.yone-app-rating p {
    color: var(--yone-secondary);
    font-size: 0.9rem;
}

.yone-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yone-app-device-wrapper {
    position: relative;
    padding: 10px;
}

.yone-app-device-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 80%);
    z-index: 0;
}

.yone-app-screenshot-large {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    border: 10px solid var(--yone-white);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.yone-app-device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background-color: var(--yone-white);
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.yone-app-screenshot-large:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.yone-app-testimonial {
    margin-top: 4rem;
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.yone-testimonial-quote {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--yone-primary);
    color: var(--yone-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
}

.yone-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--yone-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.yone-testimonial-author {
    display: flex;
    align-items: center;
}

.yone-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    border: 3px solid var(--yone-primary);
}

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

.yone-testimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--yone-dark);
}

.yone-testimonial-info p {
    font-size: 0.9rem;
    color: var(--yone-secondary);
    margin-bottom: 0;
}

/* Contact Section */
.yone-contact {
    padding: var(--spacing-3xl) 0;
    background-color: var(--yone-white);
    position: relative;
}

.yone-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.yone-contact-methods {
    margin-bottom: 3rem;
}

.yone-contact-method-card {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.yone-contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.yone-contact-method-card-primary {
    background-color: var(--yone-primary);
    color: var(--yone-white);
}

.yone-contact-method-card-primary h4,
.yone-contact-method-card-primary p {
    color: var(--yone-white);
}

.yone-contact-method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--yone-primary);
}

.yone-contact-method-card-primary .yone-contact-method-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--yone-white);
}

/* WhatsApp specific styling */
.yone-contact-method-card .fa-whatsapp {
    color: #25D366;
}

.yone-contact-method-card:hover .fa-whatsapp {
    color: var(--yone-white);
}

.yone-contact-method-card .yone-contact-method-icon:has(.fa-whatsapp) {
    background-color: rgba(37, 211, 102, 0.1);
}

.yone-contact-method-card:hover .yone-contact-method-icon:has(.fa-whatsapp) {
    background-color: #25D366;
}

.yone-contact-method-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--yone-dark);
}

.yone-contact-method-card p {
    color: var(--yone-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.yone-contact-method-link {
    display: inline-block;
    color: var(--yone-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 3px;
}

.yone-contact-method-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yone-primary);
    transition: width 0.3s ease;
}

.yone-contact-method-link:hover::after {
    width: 100%;
}

.yone-contact-method-card-primary .yone-contact-method-link {
    color: var(--yone-white);
}

.yone-contact-method-card-primary .yone-contact-method-link::after {
    background-color: var(--yone-white);
}

.yone-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yone-contact-card {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: right;
}

.yone-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
    text-align: right;
}

.yone-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.yone-contact-item:first-child {
    padding-top: 0;
}

.yone-contact-icon {
    font-size: 1.5rem;
    color: var(--yone-primary);
    background-color: rgba(42, 157, 143, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yone-contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--yone-dark);
    text-align: right;
}

.yone-contact-item p {
    color: var(--yone-dark);
    opacity: 0.7;
    text-align: right;
    margin-bottom: 0;
}

.yone-contact-item > div {
    text-align: right;
}

.yone-contact-social {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: right;
}

.yone-contact-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yone-dark);
}

.yone-contact-social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.yone-contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #E1306C, #F56040, #FCAF45);
    color: var(--yone-white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.yone-contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    color: var(--yone-white);
}

.yone-instagram-link i {
    font-size: 1.3rem;
}

.yone-instagram-link span {
    font-size: 1rem;
    font-weight: 600;
}

.yone-contact-map {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.yone-contact-form-wrapper {
    height: 100%;
}

.yone-contact-form {
    background-color: var(--yone-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.yone-form-header {
    margin-bottom: 1rem;
    text-align: right;
}

.yone-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--yone-dark);
}

.yone-form-header p {
    color: var(--yone-dark);
    opacity: 0.7;
}

/* Footer */
.yone-footer {
    background-color: var(--yone-dark);
    color: var(--yone-white);
    position: relative;
}

.yone-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/backgrounds/dots-pattern.svg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.yone-footer-top {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

.yone-footer-about {
    max-width: 350px;
}

.yone-footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yone-white);
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.yone-footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background-color: var(--yone-primary);
    border-radius: 2px;
}

.yone-footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.yone-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--yone-white);
    position: relative;
    display: inline-block;
}

.yone-footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--yone-primary);
    border-radius: 2px;
}

.yone-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.yone-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.yone-footer-link::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.yone-footer-link:hover {
    color: var(--yone-primary);
    transform: translateX(-5px);
}

.yone-footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.yone-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.yone-instagram-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F56040, #FCAF45);
    color: var(--yone-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.yone-instagram-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yone-instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.4);
    color: var(--yone-white);
}

.yone-instagram-link:hover::before {
    opacity: 1;
}

.yone-instagram-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.yone-instagram-icon i {
    font-size: 1.5rem;
    color: var(--yone-white);
}

.yone-instagram-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.yone-instagram-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.yone-instagram-username {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Footer App Section */
.yone-footer-app {
    text-align: right;
}

.yone-footer-app-badges {
    margin-top: 1.5rem;
}

.yone-download-buttons-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.yone-app-store-btn-footer,
.yone-google-play-btn-footer {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.yone-app-store-btn-footer .yone-store-text,
.yone-google-play-btn-footer .yone-store-text {
    text-align: left;
}

.yone-footer-rating {
    text-align: right;
    margin-top: 1.5rem;
}

.yone-footer-rating .yone-app-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
}

.yone-footer-rating .yone-app-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.yone-footer-rating .yone-app-stars span {
    color: var(--yone-white);
    font-weight: 600;
    margin-right: 0.5rem;
}

.yone-rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Toast Notifications */
.yone-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--yone-white);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

.yone-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.yone-toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.yone-toast-content i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.yone-toast-content span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.yone-toast-close {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: none;
    border: none;
    color: rgba(0,0,0,0.4);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.yone-toast-close:hover {
    background: rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.7);
}

.yone-toast-success {
    border-right: 4px solid var(--yone-primary);
}

.yone-toast-success .yone-toast-content i {
    color: var(--yone-primary);
}

.yone-toast-error {
    border-right: 4px solid #e74c3c;
}

.yone-toast-error .yone-toast-content i {
    color: #e74c3c;
}

.yone-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--yone-white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.yone-social-link:hover {
    background-color: var(--yone-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.yone-footer-form {
    margin-top: 1.5rem;
}

.yone-footer-app-badges {
    text-align: right;
}

.yone-footer-app-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.yone-footer-app-link {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.yone-footer-app-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.yone-footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.yone-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: right;
}

.yone-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.yone-footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.yone-footer-bottom-link:hover {
    color: var(--yone-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .yone-hero-title {
        font-size: var(--font-size-3xl);
    }

    .yone-hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .yone-section-title {
        font-size: var(--font-size-xl);
    }

    .yone-hero-buttons,
    .yone-app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .yone-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .yone-hero-title {
        font-size: var(--font-size-2xl);
    }

    .yone-hero-subtitle {
        font-size: var(--font-size-md);
    }

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

/* RTL Support */
[dir="rtl"] {
    .yone-btn-icon {
        margin-right: 0;
        margin-left: 0.5rem;
    }



    .yone-app-button i {
        margin-right: 0;
        margin-left: var(--spacing-sm);
    }

    .yone-contact-item {
        text-align: right;
    }

    .yone-contact-item h3,
    .yone-contact-item p {
        text-align: right;
    }

    /* Aseguramos que el texto esté alineado correctamente */
    .text-end {
        text-align: left !important;
    }

    .text-start {
        text-align: right !important;
    }

    /* Ajustes para la sección Hero */
    .yone-hero-content {
        text-align: right;
    }

    /* Ajustes para los botones */
    .yone-hero-buttons {
        justify-content: flex-end;
    }
}

/* Animation Classes */
.yone-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.yone-slide-up {
    animation: slideUp 0.8s ease-in-out;
}

/* ========================================
   NEW APP-FOCUSED STYLES
   ======================================== */

/* Hero Simplified Showcase */
.yone-single-phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.yone-phone-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.yone-main-phone-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.yone-main-phone-image:hover {
    transform: translateY(-10px);
}

.yone-phone-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.yone-floating-badge {
    position: absolute;
    background: white;
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--yone-light);
}

.yone-badge-1 {
    top: 15%;
    right: -20px;
    color: var(--yone-primary);
    animation-delay: 0s;
}

.yone-badge-2 {
    top: 45%;
    left: -30px;
    color: var(--yone-accent);
    animation-delay: 1s;
}

.yone-badge-3 {
    bottom: 25%;
    right: -15px;
    color: var(--yone-secondary);
    animation-delay: 2s;
}

/* App Download Buttons */
.yone-hero-download-section {
    margin: 2rem 0;
}

.yone-download-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--yone-dark);
    margin-bottom: 1rem;
    text-align: right;
}

.yone-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.yone-app-store-btn,
.yone-google-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 140px;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #333333;
}

.yone-app-store-btn {
    background: #000000;
    color: white;
    border: 1px solid #333333;
}

.yone-app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.yone-google-play-btn {
    background: #000000;
    color: white;
    border: 1px solid #333333;
}

.yone-google-play-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.yone-store-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.yone-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.yone-store-small {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yone-store-large {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1px;
}

/* Footer Download Buttons */
.yone-download-buttons-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.yone-app-store-btn-small,
.yone-google-play-btn-small {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 0.8rem;
}

.yone-app-store-btn-small .yone-store-icon,
.yone-google-play-btn-small .yone-store-icon {
    font-size: 1.2rem;
}

.yone-app-store-btn-small .yone-store-small,
.yone-google-play-btn-small .yone-store-small {
    font-size: 0.6rem;
}

.yone-app-store-btn-small .yone-store-large,
.yone-google-play-btn-small .yone-store-large {
    font-size: 0.75rem;
}

/* Unified Download Buttons Styling */
.yone-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* Remove old app button styles */
.yone-app-button,
.yone-app-button-apple,
.yone-app-button-android {
    display: none !important;
}

/* Ensure consistent styling across all sections */
section .yone-download-buttons {
    justify-content: center;
}

.yone-hero-simplified .yone-download-buttons {
    justify-content: flex-start;
}

/* Animation for download buttons */
@keyframes downloadPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.yone-app-store-btn:hover,
.yone-google-play-btn:hover {
    animation: downloadPulse 0.3s ease-in-out;
}

/* Mobile Responsive for Unity Section */
@media (max-width: 768px) {
    .yone-app-unity {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .yone-unity-content h3 {
        font-size: 1.8rem;
    }

    .yone-unity-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .yone-unity-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .yone-unity-feature {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .yone-unity-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    /* Features Grid Mobile */
    .yone-features-grid {
        margin-top: 2.5rem;
    }

    .yone-features-grid .row {
        margin-bottom: 1.5rem;
    }

    .yone-feature-card {
        padding: 2.5rem 2rem;
        min-height: 350px;
        margin-bottom: 1.5rem;
    }

    .yone-feature-header {
        margin-bottom: 2rem;
    }

    .yone-feature-header h3 {
        font-size: 1.4rem;
        min-height: auto;
    }

    .yone-feature-header p {
        font-size: 0.95rem;
        min-height: auto;
    }

    .yone-feature-list li {
        font-size: 0.95rem;
        padding: 0.8rem 0;
        min-height: 2.5rem;
    }

    .yone-feature-list li i {
        margin-left: 0.8rem;
    }

    /* Trust Section Mobile */
    .yone-trust-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .yone-trust-header h3 {
        font-size: 1.5rem;
    }

    .yone-trust-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .yone-trust-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .yone-trust-item h4 {
        font-size: 1.2rem;
    }

    .yone-trust-item p {
        font-size: 0.95rem;
    }
}

/* Floating Elements */
.yone-app-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.yone-floating-element {
    position: absolute;
    background: white;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.yone-floating-cart {
    top: 20%;
    right: -20px;
    color: var(--yone-primary);
    animation-delay: 0s;
}

.yone-floating-wallet {
    top: 50%;
    left: -30px;
    color: var(--yone-accent);
    animation-delay: 1s;
}

.yone-floating-store {
    bottom: 30%;
    right: -10px;
    color: var(--yone-secondary);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Trust Indicators */
.yone-hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}



/* App Interfaces Section */
.yone-app-interfaces {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.yone-interfaces-comparison {
    margin-top: 4rem;
}

.yone-interface-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yone-interface-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.yone-interface-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yone-primary), var(--yone-accent));
}

.yone-merchant-interface::before {
    background: linear-gradient(90deg, var(--yone-accent), var(--yone-primary));
}

.yone-interface-header {
    text-align: center;
    margin-bottom: 2rem;
}

.yone-interface-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.yone-merchant-interface .yone-interface-icon {
    background: linear-gradient(135deg, var(--yone-accent), var(--yone-primary));
}

.yone-interface-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 0.5rem;
}

.yone-interface-subtitle {
    color: var(--yone-secondary);
    font-size: 1rem;
}

.yone-interface-preview {
    text-align: center;
    margin: 2rem 0;
}

.yone-interface-screenshot {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.yone-interface-features {
    margin: 2rem 0;
}

.yone-feature-list {
    list-style: none;
    padding: 0;
}

.yone-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--yone-dark);
}

.yone-feature-list i {
    color: var(--yone-primary);
    font-size: 1rem;
}

.yone-interface-badge {
    text-align: center;
    margin-top: 1.5rem;
}

.yone-interface-mode {
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* App Unity Section */
.yone-app-unity {
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.3);
    position: relative;
    overflow: hidden;
}

.yone-app-unity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.yone-unity-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #e9ecef;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.yone-unity-content {
    position: relative;
    z-index: 2;
}

.yone-unity-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.yone-unity-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.yone-unity-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.yone-unity-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.yone-unity-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.yone-unity-feature i {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Success Stats Section */
.yone-success-stats {
    padding: 100px 0;
    background: white;
}

.yone-stats-grid {
    margin-top: 4rem;
}

.yone-stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.yone-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.yone-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.yone-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 0.5rem;
}

.yone-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yone-primary);
    margin-bottom: 0.5rem;
}

.yone-stat-description {
    font-size: 0.9rem;
    color: var(--yone-secondary);
}

/* Trust Section */
.yone-trust-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.yone-trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yone-trust-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yone-dark);
}

.yone-trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--yone-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.yone-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.yone-trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--yone-white);
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
}

.yone-trust-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 1rem;
}

.yone-trust-item p {
    color: var(--yone-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Download CTA Section */
.yone-download-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--yone-light), #f8f9fa);
}

.yone-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.yone-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 1rem;
}

.yone-cta-subtitle {
    font-size: 1.2rem;
    color: var(--yone-secondary);
    margin-bottom: 2rem;
}

.yone-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   KEY FEATURES SECTION
   ======================================== */

.yone-key-features {
    padding: 100px 0;
    background: white;
}

.yone-features-grid {
    margin-top: 4rem;
}

.yone-feature-section {
    padding: 2rem;
    height: 100%;
}

.yone-feature-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yone-feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #e9ecef;
    font-size: 2.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.2);
    transition: all 0.3s ease;
}

.yone-feature-card:hover .yone-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(42, 157, 143, 0.3);
}

.yone-feature-icon.buyer {
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
}

.yone-feature-icon.merchant {
    background: linear-gradient(135deg, var(--yone-accent), var(--yone-primary));
}

.yone-feature-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 0.5rem;
}

.yone-feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yone-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yone-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.yone-benefit-item i {
    color: var(--yone-primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.yone-benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yone-dark);
    margin-bottom: 0.5rem;
}

.yone-benefit-item p {
    color: var(--yone-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Core Features */
.yone-core-features {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.yone-core-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yone-core-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yone-dark);
    margin-bottom: 0.5rem;
}

.yone-core-header p {
    font-size: 1.1rem;
    color: var(--yone-secondary);
}

.yone-core-feature {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.yone-core-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yone-primary), var(--yone-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #e9ecef;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.yone-core-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--yone-dark);
    margin-bottom: 1rem;
}

.yone-core-feature p {
    color: var(--yone-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .yone-feature-section {
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .yone-benefit-item {
        padding: 1rem;
    }

    .yone-benefit-item i {
        font-size: 1.3rem;
    }

    .yone-core-feature {
        padding: 1.5rem 0.5rem;
    }

    .yone-feature-header h3 {
        font-size: 1.5rem;
    }

    /* Hero Section Mobile */
    .yone-hero-simplified {
        padding: 60px 0;
    }

    .yone-download-buttons {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .yone-app-store-btn,
    .yone-google-play-btn {
        width: 100%;
        max-width: 160px;
        justify-content: flex-start;
    }

    .yone-download-title {
        text-align: right;
    }

    .yone-hero-stats {
        justify-content: center;
        text-align: center;
    }

    .yone-hero-trust-indicators {
        justify-content: center;
        text-align: center;
    }

    .yone-single-phone-showcase {
        min-height: 400px;
    }

    .yone-main-phone-image {
        max-width: 250px;
    }

    .yone-floating-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .yone-badge-1,
    .yone-badge-2,
    .yone-badge-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.5rem;
        display: none; /* Hide floating badges on mobile for cleaner look */
    }
}

.yone-slide-in-right {
    animation: slideInRight 0.8s ease-in-out;
}

.yone-slide-in-left {
    animation: slideInLeft 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .yone-hero-grid,
    .yone-registration-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .yone-hero-content,
    .yone-app-content,
    .yone-registration-content {
        order: 1;
        text-align: center;
    }

    .yone-hero-illustration,
    .yone-app-image,
    .yone-registration-image {
        order: 0;
    }

    .yone-hero-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .yone-app-buttons {
        justify-content: center;
    }

    .yone-registration-content .yone-section-title,
    .yone-registration-content .yone-section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .yone-registration-content .yone-section-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .yone-footer-about,
    .yone-footer-links-column,
    .yone-footer-app {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .yone-footer-title::after,
    .yone-footer-logo::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .yone-social-links,
    .yone-footer-app-links {
        justify-content: center;
    }

    .yone-instagram-link {
        padding: 0.875rem 1.25rem;
        gap: 0.75rem;
    }

    .yone-instagram-icon {
        width: 40px;
        height: 40px;
    }

    .yone-instagram-icon i {
        font-size: 1.3rem;
    }

    .yone-instagram-label {
        font-size: 0.8rem;
    }

    .yone-instagram-username {
        font-size: 1rem;
    }

    .yone-footer-app {
        text-align: center;
    }

    .yone-download-buttons-footer {
        align-items: center;
    }

    .yone-footer-rating {
        text-align: center;
    }

    .yone-footer-rating .yone-app-stars {
        justify-content: center;
    }

    /* Toast responsive */
    .yone-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100%);
    }

    .yone-toast.show {
        transform: translateY(0);
    }

    .yone-footer-bottom-links,
    .yone-copyright {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .yone-hero-title {
        font-size: 2.5rem;
    }

    .yone-hero-subtitle {
        font-size: 1.1rem;
    }

    .yone-nav {
        display: none;
    }

    .yone-header-container {
        justify-content: space-between;
    }

    .yone-partners-slider .swiper-slide {
        width: 120px;
    }

    .yone-app-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .yone-app-feature-icon {
        margin: 0 auto 1rem;
    }

    .yone-contact-social-links {
        justify-content: center;
    }

    .yone-contact-social {
        text-align: center;
        margin-top: 2rem;
    }

    .yone-contact-social h3 {
        text-align: center;
    }

    .yone-contact-social-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .yone-instagram-link i {
        font-size: 1.2rem;
    }

    .yone-instagram-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .yone-hero-title {
        font-size: 2rem;
    }

    .yone-section-title {
        font-size: 1.8rem;
    }



    .yone-app-buttons {
        flex-direction: column;
        width: 100%;
    }

    .yone-app-button {
        width: 100%;
    }

    .yone-footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
