/*
Theme Name: Teufy 2
Description: Thème WordPress complet pour Teufy avec sections développées
Version: 2.0
Author: Teufy Team
*/

/* CSS Custom Properties */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFD23F;
    --highlight-color: #EE5A52;
    --success-color: #2ECC71;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
    
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --text-white: #FFFFFF;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #2C3E50;
    --bg-gradient: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    --transition: all 0.3s ease;
    --animation-duration: 0.6s;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Notifications */
.teufy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.teufy-notification.success {
    background-color: var(--success-color);
}

.teufy-notification.error {
    background-color: var(--danger-color);
}

.teufy-notification.info {
    background-color: #3b82f6;
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
}

.info-message {
    background: #d1ecf1;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #bee5eb;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-content p {
    margin: 0;
    flex: 1;
    color: white;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-consent-actions a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-consent-actions a:hover {
    text-decoration: underline;
}

#accept-cookies {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.teufy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo a:hover {
}

.custom-logo {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.site-title-text {
    font-weight: 800;
    display: inline-block;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.logo:hover .site-title-text {
    opacity: 0.8;
}

.logo h2 {
    margin: 0;
    font-size: 2rem;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b35;
}

/* Bouton Menu Mobile */
.menu-btn {
    display: none;
    background: white;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 10px 14px;
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-btn:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.05);
}

.menu-btn.open {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(238, 90, 82, 0.1));
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-custom-image {
    text-align: center;
}

.hero-main-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.app-mockups-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.app-mockup-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.app-mockup-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.concept-image {
    margin-top: 1.5rem;
    text-align: center;
}

.concept-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.concept-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.features-main-image {
    text-align: center;
}

.features-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    margin-top: 1.5rem;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-image img:hover {
    transform: scale(1.03);
}

.vtc-main-image {
    text-align: center;
}

.vtc-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.vtc-feature-image {
    margin-top: 1.5rem;
    text-align: center;
}

.vtc-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vtc-feature-image img:hover {
    transform: scale(1.03);
}

.team-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.team-image:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: white;
}

.app-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.app-content h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.event-info h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: floating 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: var(--bg-primary);
}

/* Section Styles */
.teufy-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

.gradient-text {
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Concept Section */
.concept-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.concept-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main-concept {
    grid-column: span 1;
}

.concept-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.concept-icon i {
    font-size: 1.5rem;
    color: white;
}

.concept-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.concept-list {
    list-style: none;
    margin-top: 1rem;
}

.concept-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.concept-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.ecosystem-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.eco-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.eco-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.eco-icon span {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-showcase {
    margin-bottom: 4rem;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.offer-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.offer-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.offer-card.cinema .offer-icon {
    background: var(--secondary-color);
}

.offer-card.bar .offer-icon {
    background: var(--primary-color);
}

.offer-card.event .offer-icon {
    background: var(--highlight-color);
}

.offer-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.offer-deal {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.offer-savings {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 500;
}

.phone-mockup-advanced {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2C3E50, #34495E);
    border-radius: 25px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
}

.phone-screen-advanced {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.app-title {
    font-weight: 600;
    color: var(--text-dark);
}

.notification-icon {
    color: var(--primary-color);
}

.offers-list {
    flex: 1;
}

.offer-item {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    position: relative;
    background: var(--bg-secondary);
}

.offer-item.active {
    background: var(--bg-gradient);
    color: white;
}

.offer-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: var(--warning-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-detail {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large i {
    font-size: 1.8rem;
    color: white;
}

.feature-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.spec-item i {
    color: var(--primary-color);
}

.boost-demo {
    margin-top: 1rem;
}

.boost-slider {
    text-align: center;
}

.boost-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.boost-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.boost-progress {
    width: 75%;
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 75%; }
}

.boost-value {
    font-weight: 600;
    color: var(--text-dark);
}

.points-system {
    margin-top: 1rem;
}

.points-earn, .points-use {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.points-earn i {
    color: var(--success-color);
}

.points-use i {
    color: var(--warning-color);
}

/* VTC Section */
.vtc-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.05), rgba(255, 107, 53, 0.05));
}

.vtc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.vtc-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

.vtc-visual {
    display: flex;
    justify-content: center;
}

.vtc-interface {
    width: 320px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.interface-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.user-points {
    background: var(--bg-gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trip-planner {
    position: relative;
    margin-bottom: 2rem;
}

.location-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.start-point {
    color: var(--success-color);
}

.end-point {
    color: var(--danger-color);
}

.location-line {
    position: absolute;
    left: 27px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: #ddd;
}

.trip-options {
    margin-bottom: 2rem;
}

.trip-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.trip-option:hover {
    border-color: var(--primary-color);
}

.trip-option.selected {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.option-info h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.option-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.option-price {
    text-align: right;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.points-price {
    color: var(--primary-color);
    font-weight: 600;
}

.book-btn {
    width: 100%;
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vtc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vtc-feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.vtc-feature h4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.savings-example {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    text-align: center;
}

.route {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
}

.new-price {
    color: var(--success-color);
    font-weight: 600;
}

.partner-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.smart-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1rem;
}

.smart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.smart-item i {
    color: var(--primary-color);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-gradient);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.launch-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.launch-date, .launch-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.teufy-newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.teufy-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.teufy-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.teufy-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.teufy-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.teufy-contact-form input,
.teufy-contact-form select,
.teufy-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.teufy-contact-form input:focus,
.teufy-contact-form select:focus,
.teufy-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.teufy-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-link {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

@keyframes menuBounce {
    0% { transform: translateY(-20px) scale(0.95); }
    50% { transform: translateY(5px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}



.animate-in {
    animation: fadeInUp var(--animation-duration) ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    /* PHONE MOCKUP MOBILE OPTIMISÉ */
    .phone-mockup {
        width: clamp(240px, 70vw, 300px) !important;
        height: clamp(480px, 140vw, 600px) !important;
        background: linear-gradient(145deg, #ffffff, #f8f9fa) !important;
        border-radius: clamp(20px, 5vw, 30px) !important;
        padding: clamp(8px, 2vw, 15px) !important;
        box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15) !important;
        border: 1px solid rgba(255, 107, 53, 0.1) !important;
        margin: clamp(15px, 4vw, 25px) auto !important;
        position: relative !important;
    }
    
    .phone-screen {
        width: 100% !important;
        height: 100% !important;
        background: var(--bg-gradient) !important;
        border-radius: clamp(12px, 3vw, 20px) !important;
        padding: clamp(12px, 3vw, 20px) !important;
        display: flex !important;
        flex-direction: column !important;
        color: white !important;
    }
    /* Anti-débordement global mobile */
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Afficher le bouton menu mobile */
    .menu-btn {
        display: block;
    }
    
    /* Menu mobile en overlay */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1000;
        max-width: 400px;
        margin: 0 auto;
        gap: 0;
    }
    
    /* Menu ouvert */
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Items menu mobile */
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* Liens menu mobile */
    .nav-link {
        display: block;
        color: #333;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
        color: #ff6b35;
    }
    
    .nav-menu li {
    }
    
    .nav-menu li:last-child {
    }
    
    
    .nav-menu .nav-link {
    }
    
    .nav-menu .nav-link::after {
    }
    
    .nav-menu .nav-link::before {
    }
    
    .nav-menu .nav-link:hover {
    }
    
    .nav-menu .nav-link:hover::before {
    }
}

/* Très petits écrans - corrections additionnelles */
@media (max-width: 480px) {
    
    /* Phone mockup pour très petits écrans */
    .phone-mockup {
        width: clamp(200px, 65vw, 240px) !important;
        height: clamp(400px, 130vw, 480px) !important;
        padding: clamp(6px, 1.5vw, 10px) !important;
        border-radius: clamp(15px, 4vw, 20px) !important;
    }
    
    .phone-screen {
        border-radius: clamp(8px, 2vw, 12px) !important;
        padding: clamp(8px, 2vw, 12px) !important;
    }
    .container {
        padding: 0 10px !important;
    }
    
    .hero-text h1 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    
    .hero-text h2 {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
    }
    
    .hero-text p {
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
    }
    
    .section h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
    }
    
    .concept-card,
    .vtc-card,
    .partner-card,
    .feature-card {
        padding: 1rem !important;
    }
    
    .newsletter-form,
    .contact-form {
        padding: 1rem !important;
    }
    
    /* CORRECTIONS RESPONSIVES MOBILE */
    
    /* Hero responsive avec texte qui passe à la ligne */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero-text h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-text h2 {
        font-size: clamp(1.1rem, 5vw, 1.4rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-text p {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .teufy-btn {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
    }
    
    /* Images responsive */
    .hero-visual img,
    .app-mockup-img,
    .hero-main-image {
        max-width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Sections responsive */
    .section {
        padding: 60px 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
    }
    
    /* Grilles en colonne sur mobile */
    .concept-grid,
    .vtc-features,
    .partner-grid,
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    
    .concept-card,
    .vtc-card,
    .partner-card,
    .feature-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
    }
    
    .concept-card h3,
    .vtc-card h3,
    .partner-card h3,
    .feature-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.4rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .concept-card p,
    .vtc-card p,
    .partner-card p,
    .feature-card p {
        font-size: clamp(0.85rem, 3vw, 1rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }
    
    /* Newsletter et Contact responsive */
    .newsletter-content,
    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    
    .newsletter-form,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }
    
    .teufy-newsletter-form .form-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .teufy-newsletter-form input {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
    }
    
    .teufy-contact-form .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .teufy-contact-form input,
    .teufy-contact-form select,
    .teufy-contact-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
    }
    
    /* Footer responsive */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }
    
    /* Styles pour les éléments stat individuels */
    .stat-item,
    .stat-card {
        flex: 1 !important;
        min-width: 0 !important; 
        text-align: center !important;
        padding: clamp(0.5rem, 2vw, 1rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    .stat-item h3,
    .stat-card h3,
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        word-break: break-word !important;
        line-height: 1.1 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-item p,
    .stat-card p,
    .stat-label {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem) !important;
        word-break: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    
    /* Stats HORIZONTALES sur mobile */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: clamp(0.5rem, 3vw, 1.5rem) !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        text-align: center !important;
    }
    
    .floating-card {
        position: static;
        margin: 10px 0;
        animation: none;
    }
    
    .floating-elements {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .vtc-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vtc-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .teufy-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .launch-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .teufy-newsletter-form .form-group {
        flex-direction: column;
    }
    
    /* Partner Stats HORIZONTALES sur mobile */
    .partner-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: clamp(0.5rem, 3vw, 1.5rem) !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        text-align: center !important;
    }
}

/* ================================================
   ULTRA RESPONSIVE MOBILE DESIGN - NO OVERFLOW 
   ================================================ */

/* Prevent any horizontal overflow */
html, body {
}

*, *::before, *::after {
}

/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
    .container {
    }
    
    .hero-content {
    }
    
    .features-grid,
    .concept-grid,
    .vtc-features,
    .partners-grid {
    }
    
    .feature-main,
    .vtc-hero,
    .contact-content {
    }
}

/* MOBILE RESPONSIVE - LARGE */
@media (max-width: 768px) {
    .container {
    }
    
    /* Typography responsive */
    h1 {
    }
    
    h2 {
    }
    
    h3 {
    }
    
    p, .text-content {
    }
    
    /* Section spacing */
    section {
    }
    
    /* Hero section mobile */
    .hero {
    }
    
    .hero-buttons {
    }
    
    .teufy-btn, .btn-primary, .btn-secondary {
    }
    
    /* Stats responsive */
    .hero-stats {
    }
    
    .stat-item {
    }
    
    .stat-number {
    }
    
    .stat-label {
    }
    
    /* Grids mobile */
    .features-grid,
    .concept-grid,
    .vtc-features,
    .partners-grid,
    .concept-stats,
    .newsletter-content {
    }
    
    /* Cards responsive */
    .feature-card,
    .concept-card,
    .vtc-card,
    .partner-card,
    .stat-card {
    }
    
    /* Images responsive */
    .hero-visual img,
    .app-mockup-img,
    .hero-main-image,
    .feature-image,
    .partner-logo {
    }
    
    .app-mockups-gallery {
    }
    
    /* Forms mobile */
    .newsletter-form,
    .contact-form {
    }
    
    .form-row {
    }
    
    .form-control {
    }
    
    .form-btn {
    }
}

/* MOBILE RESPONSIVE - SMALL */
@media (max-width: 480px) {
    .container {
    }
    
    /* Ultra small mobile typography */
    h1 {
    }
    
    h2 {
    }
    
    h3 {
    }
    
    /* Section padding reduced */
    section {
    }
    
    .hero {
    }
    
    /* Buttons smaller */
    .teufy-btn, .btn-primary, .btn-secondary {
    }
    
    /* Cards padding reduced */
    .feature-card,
    .concept-card,
    .vtc-card,
    .partner-card,
    .stat-card {
    }
    
    /* Images smaller on very small screens */
    .hero-visual img,
    .app-mockup-img,
    .hero-main-image {
    }
    
    /* Forms ultra responsive */
    .form-control {
    }
    
    /* Stats grid for very small screens */
    .hero-stats {
    }
    
    .stat-item {
    }
}

/* MOBILE RESPONSIVE - EXTRA SMALL */
@media (max-width: 360px) {
    .container {
    }
    
    /* Minimal spacing for tiny screens */
    section {
    }
    
    .hero {
    }
    
    /* Typography for tiny screens */
    h1 {
    }
    
    h2 {
    }
    
    /* Buttons for tiny screens */
    .teufy-btn, .btn-primary, .btn-secondary {
    }
    
    /* Cards minimal padding */
    .feature-card,
    .concept-card,
    .vtc-card,
    .partner-card,
    .stat-card {
    }
    
    /* Minimal image sizes */
    .hero-visual img,
    .app-mockup-img,
    .hero-main-image {
    }
}

/* LANDSCAPE MOBILE FIXES */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
    }
    
    .hero-visual img,
    .app-mockup-img,
    .hero-main-image {
    }
    
    section {
    }
}

/* ULTRA-WIDE SCREEN CONSTRAINTS */
@media (min-width: 1400px) {
    .container {
    }
}

/* ACCESSIBILITY & PERFORMANCE */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    .feature-card,
    .concept-card,
    .vtc-card,
    .partner-card,
    .stat-card {
    }
    
    .teufy-btn, .btn-primary, .btn-secondary {
    }
}