/* ATTILIO Website - Complete CSS Styles */

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

html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #111827;
    font-size: 16px;
    line-height: 1.6;
}

/* News Ticker */
.news-ticker {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    z-index: 40;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.news-label {
    background: rgba(0, 0, 0, 0.2);
    padding: 0 15px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.news-scroll {
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.news-text {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    animation: ticker-scroll 120s linear infinite;
}

.news-text:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .news-ticker {
        top: 64px;
        height: 35px;
    }
    
    .news-label {
        font-size: 10px;
        padding: 0 10px;
    }
    
    .news-text {
        font-size: 11px;
        animation: ticker-scroll 150s linear infinite;
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-img {
    height: 4rem;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-red-600);
}

.header-cta {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: var(--color-gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--color-gray-200);
    background: white;
}

.nav-mobile.open {
    display: flex;
}

.nav-link-mobile {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: var(--color-red-600);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}

/* CSS Variables */
:root {
    --color-red-600: #dc2626;
    --color-red-700: #b91c1c;
    --color-blue-600: #dc2626;
    --color-blue-700: #b91c1c;
    --color-purple-600: #9333ea;
    --color-purple-700: #7c3aed;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-white: #ffffff;
    --color-green-600: #059669;
    --color-red-600: #dc2626;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.h-6 {
    height: 1.5rem;
    width: 1.5rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--color-red-600);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-red-600);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--color-red-600);
    color: white;
    transform: translateY(-2px);
}

.btn-partnership {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-partnership:hover {
    background: var(--color-gray-200);
}

.btn-partnership-inquiry {
    background: var(--color-red-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-partnership-inquiry:hover {
    background: var(--color-red-700);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-highlight {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red-600);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Video Support */
.video-hero-container,
.video-section-container {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: var(--color-gray-100);
    aspect-ratio: 16/9;
}

.video-hero-container {
    height: 500px;
}

.video-section-container {
    height: 400px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-thumbnail img {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-placeholder:hover .play-button {
    background: rgba(220, 38, 38, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
    transition: opacity 0.3s ease;
}

/* Indicatore video attivo */
.video-placeholder[data-video-active="true"] {
    box-shadow: 0 0 0 3px #dc2626;
    transform: scale(1.02);
}

/* Animazione smooth per cambio video */
.video-placeholder {
    transition: all 0.3s ease;
}

/* Responsive Video */
@media (max-width: 767px) {
    .video-hero-container {
        height: 300px;
    }
    
    .video-section-container {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
}

.hero-img {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    background: var(--color-gray-100) !important;
    transition: opacity 0.3s ease !important;
    display: block !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.hero-img:not([src]),
.hero-img[src=""] {
    opacity: 0;
}

.hero-img[src]:not([src=""]) {
    opacity: 1;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Device Section */
.device-section {
    padding: 5rem 0;
    background: white;
}

.device-section-header {
    margin-bottom: 4rem;
}

.device-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .device-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.device-img {
    width: 100% !important;
    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1rem !important;
    background: var(--color-gray-50) !important;
    transition: opacity 0.3s ease !important;
    display: block !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.device-img:not([src]),
.device-img[src=""] {
    opacity: 0;
}

.device-img[src]:not([src=""]) {
    opacity: 1;
}

.device-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.device-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.device-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.feature-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

/* AI Section */
.ai-section {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.ai-section-header {
    margin-bottom: 4rem;
}

.ai-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ai-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.ai-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.ai-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ai-feature-icon {
    background: linear-gradient(135deg, var(--color-purple-600), var(--color-red-600));
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.ai-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.ai-feature-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.ai-img {
    width: 100% !important;
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    background: var(--color-gray-50) !important;
    transition: opacity 0.3s ease !important;
    display: block !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.ai-img:not([src]),
.ai-img[src=""] {
    opacity: 0;
}

.ai-img[src]:not([src=""]) {
    opacity: 1;
}

/* Emergency Section */
.emergency-section {
    padding: 5rem 0;
    background: white;
}

.emergency-section-header {
    margin-bottom: 4rem;
}

.emergency-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .emergency-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.emergency-img {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1rem !important;
    background: var(--color-gray-50) !important;
    transition: opacity 0.3s ease !important;
    display: block !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.emergency-img:not([src]),
.emergency-img[src=""] {
    opacity: 0;
}

.emergency-img[src]:not([src=""]) {
    opacity: 1;
}

.emergency-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.emergency-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.emergency-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.emergency-feature-number {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.emergency-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.emergency-feature-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

/* Investor Page Styles */
.investor-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Ensure all colored sections cover full width */
section[style*="background"] {
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* Specific fixes for sections with colored backgrounds */
.hero[style*="background"],
.device-section[style*="background"],
.ai-section[style*="background"],
.emergency-section[style*="background"] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    position: relative;
}

/* Ensure container content stays centered */
.hero .container,
.device-section .container,
.ai-section .container,
.emergency-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .hero .container,
    .device-section .container,
    .ai-section .container,
    .emergency-section .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero .container,
    .device-section .container,
    .ai-section .container,
    .emergency-section .container {
        padding: 0 2rem;
    }
}

.investor-hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .investor-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.investor-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .investor-hero-title {
        font-size: 3.5rem;
    }
}

.investor-hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.investment-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-description {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.investor-hero-img {
    width: 100%;
    height: 500px !important;
    min-height: 500px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--color-gray-100);
    transition: opacity 0.3s ease;
    display: block;
}

.investor-hero-img:not([src]),
.investor-hero-img[src=""] {
    opacity: 0;
}

.investor-hero-img[src]:not([src=""]) {
    opacity: 1;
}

/* Market Opportunity */
.market-opportunity {
    padding: 5rem 0;
    background: white;
}

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

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

.market-stat {
    background: var(--color-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--color-gray-200);
}

.market-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-red-600);
    margin-bottom: 0.5rem;
}

.market-stat-label {
    font-size: 1rem;
    color: var(--color-gray-700);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.market-stat-growth {
    font-size: 0.875rem;
    color: var(--color-green-600);
    font-weight: 500;
}

/* Business Model */
.business-model {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.business-model-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .business-model-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.revenue-streams {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.revenue-stream {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-gray-200);
}

.revenue-icon {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.revenue-content {
    flex: 1;
}

.revenue-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.revenue-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.revenue-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-red-600);
    margin-left: auto;
}

.business-model-chart {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    gap: 1rem;
    align-items: end;
    height: 200px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bar {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    width: 100%;
    border-radius: 0.25rem 0.25rem 0 0;
    min-height: 20px;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.bar-value {
    font-size: 0.875rem;
    color: var(--color-gray-900);
    font-weight: 600;
}

/* Investment Rounds */
.investment-rounds {
    padding: 5rem 0;
    background: white;
}

.rounds-container {
    display: grid;
    gap: 2rem;
}

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

.round-card {
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.round-card.current {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-color: var(--color-red-600);
}

.round-badge {
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    background: var(--color-red-600);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.round-card.future .round-badge {
    background: var(--color-gray-400);
}

.round-header {
    margin-bottom: 1.5rem;
}

.round-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.round-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red-600);
}

.round-description {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.round-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.detail-label {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.detail-value {
    color: var(--color-gray-900);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-stat {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-gray-200);
}

.team-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red-600);
    margin-bottom: 0.25rem;
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.team-expertise {
    display: grid;
    gap: 2rem;
}

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

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    text-align: center;
}

.expertise-icon {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

.expertise-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.expertise-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    background: linear-gradient(135deg, var(--color-red-600), var(--color-purple-600));
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.contact-img {
    width: 100%;
    height: 400px !important;
    min-height: 400px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--color-gray-50);
    transition: opacity 0.3s ease;
    display: block;
}

.contact-img:not([src]),
.contact-img[src=""] {
    opacity: 0;
}

.contact-img[src]:not([src=""]) {
    opacity: 1;
}

/* Image Loading States */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

/* Responsive Image Adjustments */
@media (max-width: 767px) {
    .hero-img {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
    
    .investor-hero-img {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    .device-img {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    .emergency-img {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    .contact-img {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    .ai-img {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
}

/* Image Error Handling */
.img-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-500);
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 1.5rem 1.5rem 0.75rem;
}

.video-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    gap: 2rem;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-gray-800);
    border-bottom: 1px solid var(--color-gray-800);
}

.footer-stat {
    text-align: center;
}

.footer-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 0.25rem;
}

.footer-stat-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: white;
}

/* Language Selector Styles */
.language-selector-desktop {
    display: none;
}

@media (min-width: 768px) {
    .language-selector-desktop {
        display: block;
    }
}

.language-selector-mobile {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}

.language-select {
    background: white;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: border-color 0.2s;
}

.language-select:hover {
    border-color: var(--color-red-600);
}

.language-select:focus {
    outline: none;
    border-color: var(--color-red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Mobile language selector full width */
.language-selector-mobile .language-select {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 767px) {
    .news-ticker {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 30px;
        font-size: 11px;
    }
    
    .news-label {
        font-size: 9px;
        padding: 0 8px;
    }
    
    .news-text {
        font-size: 10px;
        animation: ticker-scroll 180s linear infinite;
    }
    
    /* Header mobile ottimizzato */
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        height: 3.5rem;
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 3rem;
    }
    
    .mobile-menu-button {
        padding: 0.25rem;
    }
    
    /* Hero mobile ottimizzato */
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        margin-bottom: 0.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Video mobile ottimizzato */
    .video-hero-container {
        height: 250px;
        margin-top: 1rem;
    }
    
    .video-section-container {
        height: 200px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Sezioni mobile ottimizzate */
    .device-section,
    .ai-section,
    .emergency-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .device-content,
    .ai-content,
    .emergency-content {
        gap: 2rem;
        text-align: center;
    }
    
    .device-title,
    .ai-title,
    .emergency-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .device-description,
    .ai-description,
    .emergency-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    /* Features mobile */
    .device-features,
    .ai-features,
    .emergency-features {
        gap: 1.25rem;
        text-align: left;
    }
    
    .feature-item,
    .ai-feature,
    .emergency-feature {
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .feature-icon,
    .ai-feature-icon {
        padding: 0.625rem;
        border-radius: 0.625rem;
        flex-shrink: 0;
    }
    
    .feature-title,
    .ai-feature-title,
    .emergency-feature-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-description,
    .ai-feature-description,
    .emergency-feature-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .emergency-feature-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    /* Container mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Navigation mobile */
    .nav-mobile {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .nav-link-mobile {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-gray-100);
    }
    
    .nav-link-mobile:last-of-type {
        border-bottom: none;
    }
    
    .mobile-cta {
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .btn-partnership,
    .btn-partnership-inquiry {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        height: 2.5rem;
        margin: 0 auto 0.75rem;
    }
    
    .footer-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-list {
        gap: 0.375rem;
    }
    
    .footer-link {
        font-size: 0.8125rem;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer-stat-value {
        font-size: 1.25rem;
    }
    
    .footer-stat-label {
        font-size: 0.6875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-legal-link {
        font-size: 0.8125rem;
    }
    
    .footer-legal {
        gap: 1rem;
        justify-content: center;
    }
    
    /* Investor page mobile */
    .investor-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .investor-hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .investor-hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .investment-highlights {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-item {
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .highlight-icon {
        padding: 0.625rem;
        border-radius: 0.625rem;
        flex-shrink: 0;
    }
    
    .highlight-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .highlight-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .investor-hero-img {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    /* Market stats mobile */
    .market-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .market-stat {
        padding: 1.5rem;
        text-align: center;
    }
    
    .market-stat-value {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .market-stat-label {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }
    
    .market-stat-growth {
        font-size: 0.8125rem;
    }
    
    /* Business model mobile */
    .business-model-content {
        gap: 2rem;
        text-align: center;
    }
    
    .revenue-streams {
        gap: 1.25rem;
    }
    
    .revenue-stream {
        gap: 0.75rem;
        padding: 1.25rem;
        text-align: left;
    }
    
    .revenue-icon {
        padding: 0.625rem;
        border-radius: 0.625rem;
        flex-shrink: 0;
    }
    
    .revenue-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .revenue-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .revenue-percentage {
        font-size: 1.25rem;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    /* Investment rounds mobile */
    .rounds-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .round-card {
        padding: 1.5rem;
    }
    
    .round-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .round-amount {
        font-size: 1.75rem;
    }
    
    .round-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .round-details {
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.8125rem;
    }
    
    /* Team section mobile */
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-stat {
        padding: 1.25rem;
    }
    
    .team-stat-value {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .team-stat-label {
        font-size: 0.8125rem;
    }
    
    .team-expertise {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-item {
        padding: 1.5rem;
    }
    
    .expertise-icon {
        padding: 0.875rem;
        border-radius: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .expertise-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .expertise-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    /* Contact section mobile */
    .contact-content {
        gap: 2rem;
        text-align: center;
    }
    
    .contact-details {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .contact-detail {
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .contact-icon {
        padding: 0.625rem;
        border-radius: 0.625rem;
        flex-shrink: 0;
    }
    
    .contact-title {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-value {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .contact-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .contact-img {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    /* Video grid mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .video-card {
        margin-bottom: 0;
    }
    
    .video-title {
        font-size: 1.125rem;
        margin: 1.25rem 1.25rem 0.625rem;
    }
    
    .video-description {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin: 0 1.25rem 1.25rem;
    }
    
    /* Hotel images grid mobile */
    .hotel-images-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hotel-image-container h3 {
        font-size: 1.125rem !important;
        margin-top: 0.75rem !important;
    }
    
    /* Reduce excessive spacing */
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .device-section-header,
    .ai-section-header,
    .emergency-section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Compact text sizing */
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .device-title,
    .ai-title,
    .emergency-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .investor-hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    
    /* Optimize button spacing */
    .hero-cta,
    .contact-cta {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    /* Compact feature lists */
    .device-features,
    .ai-features,
    .emergency-features {
        gap: 1rem;
    }
    
    /* Optimize margins */
    .device-description,
    .ai-description,
    .emergency-description {
        margin-bottom: 1.5rem;
    }
    
    /* Professional spacing for stats */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        backdrop-filter: blur(10px);
    }
}

/* Animation Classes */
.loaded {
    opacity: 1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-4 {
    padding: 1rem;
}

.rounded {
    border-radius: 0.375rem;
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-button,
    .nav-mobile {
        display: none !important;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
    
    .btn-primary,
    .btn-secondary {
        border: 1px solid #000;
        background: none !important;
        color: #000 !important;
    }
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input::placeholder {
    color: var(--color-gray-400);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--color-red-600);
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.success-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.error-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.field-error {
    color: var(--color-red-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
}

.contact-method p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

/* Contact Form Mobile Styles */
@media (max-width: 767px) {
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-input {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 0.9375rem;
    }
    
    .checkbox-label {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
    
    .contact-info {
        margin-top: 2rem !important;
        padding: 0 1rem;
    }
    
    .contact-info > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-method {
        padding: 1rem;
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}