/* NOTFALLMANAGER.IT - Exact copy from HTML version */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    height: 3rem;
    width: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    mix-blend-mode: screen;
}

.header.scrolled .logo img {
    filter: brightness(1) contrast(1.1) drop-shadow(0 1px 3px rgba(0,0,0,0.1));
    mix-blend-mode: normal;
}

.logo img:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
    color: white;
    text-decoration: none;
}

.header.scrolled .nav-menu a {
    color: #374151;
}

.nav-menu a:hover {
    color: #ea580c;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.header.scrolled .mobile-menu-toggle span {
    background: #1f2937;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #ea580c;
    color: white;
}

.btn-primary:hover {
    background: #c2410c;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #c2410c, #ea580c);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-hero-outline {
    border: 3px solid #ea580c;
    color: #ea580c;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transform: scale(1);
}

.btn-hero-outline:hover {
    background: #ea580c;
    color: white;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 165, 0, 0.2)), url('https://images.unsplash.com/photo-1523875194681-bedd468c58bf?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 64rem;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-orange-highlight {
    color: #fbbf24;
}

.hero-highlight {
    display: block;
    margin-top: 0.5rem;
    color: #ea580c;
}

.hero-subtext {
    display: block;
    margin-top: 0.5rem;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: #d1d5db;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #d1d5db;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

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

.text-orange-bold {
    color: #fbbf24;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #d1d5db;
    text-align: center;
    margin-top: 0.75rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937, #111827, rgba(234, 88, 12, 0.2));
    color: white;
}

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

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.risks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.risk-card {
    background: linear-gradient(135deg, #374151, #1f2937);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #ea580c;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.risk-card:hover {
    transform: scale(1.05);
    border-left-color: #fbbf24;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.2);
}

.risk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.risk-icon {
    color: #fbbf24;
}

.risk-icon i {
    font-size: 2rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-critical {
    background: #dc2626;
    color: white;
}

.badge-high {
    background: #ea580c;
    color: white;
}

.badge-medium {
    background: #eab308;
    color: #1f2937;
}

.risk-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fed7aa;
}

.risk-card p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.problem-cta {
    text-align: center;
    margin-top: 4rem;
}

.problem-cta-card {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 64rem;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #fbbf24;
}

.problem-cta-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.warning-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fed7aa;
}

.solution-text {
    font-size: 1.25rem;
    font-weight: 700;
}

/* USP Section */
.usp-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, white, #fff7ed);
}

.usp-section .section-header h2 {
    color: #1f2937;
}

.usp-section .section-subtitle {
    color: #6b7280;
}

.usp-warning {
    background: #ea580c;
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 48rem;
    margin: 2rem auto 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.usp-warning p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.highlight-block {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 84rem;
    margin: 4rem auto 0;
}

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

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

.usp-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
    transition: all 0.3s ease;
}

.usp-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #f97316;
    transform: translateY(-5px);
}

.usp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.usp-icon {
    color: #ea580c;
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

.usp-icon i {
    font-size: 2rem;
}

.usp-badge {
    background: #fed7aa;
    color: #c2410c;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.usp-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.usp-card:hover h3 {
    color: #c2410c;
}

.usp-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fed7aa;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.solution-section .section-header h2 {
    color: white;
}

.solution-subtitle {
    margin-top: 2rem;
}

.main-benefit {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

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

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 1rem;
    border: 1px solid #ea580c;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.2);
}

.feature-icon {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fed7aa;
}

.feature-card p {
    color: #d1d5db;
}

/* Central Functions */
.central-functions {
    margin-top: 5rem;
}

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

.functions-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.divider-line {
    width: 5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea580c, transparent);
}

.functions-icon {
    color: #fbbf24;
    font-size: 2rem;
    margin: 0 2rem;
}

.functions-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.functions-header p {
    color: #d1d5db;
    font-size: 1.125rem;
}

.functions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.function-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.function-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.function-icon-wrapper {
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orange-gradient {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.indigo-gradient {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.teal-gradient {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.function-content h4 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.function-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.bsi-compliant {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bsi-compliant i {
    font-size: 1.25rem;
}

/* Software Demo Section */
.software-demo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, white, #fff7ed, rgba(234, 88, 12, 0.05));
}

.software-demo-section .section-header h2 {
    color: #1f2937;
}

.software-demo-section .section-subtitle {
    color: #6b7280;
}

.software-screenshots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

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

.screenshot-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 2px solid #fed7aa;
    transition: all 0.5s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(234, 88, 12, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2rem;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.overlay-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-tag i {
    font-size: 0.875rem;
}

.demo-cta {
    text-align: center;
    margin-top: 4rem;
}

.demo-cta-content {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.demo-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #fed7aa;
}

.demo-cta-content .btn {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    gap: 0.75rem;
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.demo-section .section-header h2 {
    color: #1f2937;
}

.demo-section .section-subtitle {
    color: #6b7280;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid #fed7aa;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.form-submit-btn {
    margin-top: 1rem;
    width: 100%;
    gap: 0.75rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.benefits-card {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: fit-content;
}

.benefits-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon-small {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-icon-small i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #fed7aa;
    font-size: 0.875rem;
}

.social-proof {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.social-proof p {
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-section h4 {
    color: #fbbf24;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fbbf24;
}

.contact-info i {
    color: #ea580c;
    margin-right: 0.5rem;
    width: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        color: #374151;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 18.75rem;
    }
}

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

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

/* Scroll to top functionality */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #ea580c;
    transform: scale(1.1);
}

.scroll-to-top.show {
    display: block;
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.form-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    text-align: center;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.form-content {
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #f97316;
    width: 1rem;
}

.form-input, .form-textarea, .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: white;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

.btn-submit {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Privacy Checkbox Styles */
.privacy-group {
    margin-top: 1rem;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.5;
}

.privacy-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    accent-color: #f97316;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.privacy-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

.privacy-text a {
    color: #f97316;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-text a:hover {
    color: #ea580c;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert i {
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-success i {
    color: #059669;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-error i {
    color: #dc2626;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alert p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Benefits - Professional & Responsive */
.contact-benefits {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
}

/* Responsive Grid Layout */
@media (min-width: 640px) {
    .contact-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f3f4f6;
    min-height: 220px;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.benefit-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-shrink: 0;
    max-width: 100%;
    white-space: normal;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 639px) {
    .contact-benefits {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }
    
    .benefit-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Tablet Portrait */
@media (min-width: 640px) and (max-width: 768px) {
    .benefit-item {
        padding: 1.75rem 1.25rem;
        min-height: 190px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .contact-benefits {
        gap: 2.5rem;
    }
    
    .benefit-item {
        padding: 2.25rem 1.75rem;
        min-height: 240px;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .benefit-item {
        min-height: 260px;
        padding: 2.5rem 2rem;
    }
}

/* Text Overflow Protection for All Browsers */
.benefit-item h4,
.benefit-item p {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-overflow-wrap: break-word;
    -ms-word-break: break-all;
}

/* Ensure proper box sizing for all elements */
.benefit-item *,
.benefit-item *::before,
.benefit-item *::after {
    box-sizing: border-box;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        padding: 1.5rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .contact-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        min-height: 160px;
        padding: 1.25rem 1rem;
    }
}

/* Reseller Section Styles - Exact React Copy */
.reseller-section {
    padding: 5rem 0;
    background: #f97316; /* Same as React bg-orange-500 */
    color: white;
}

.reseller-content {
    max-width: 64rem; /* Same as React max-w-4xl */
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.reseller-header {
    margin-bottom: 2rem;
}

.reseller-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.reseller-header h2 {
    font-size: 2.25rem; /* 3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .reseller-header h2 {
        font-size: 2.5rem; /* 4xl */
    }
}

.reseller-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fed7aa; /* Same as React text-orange-100 */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reseller-subtitle strong {
    color: white;
}

.reseller-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

/* Glassmorphism Cards - Exact React Style */
.reseller-card {
    background: rgba(255, 255, 255, 0.1); /* Same as React bg-white/10 */
    backdrop-filter: blur(4px); /* Same as React backdrop-blur-sm */
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0.75rem; /* Same as React rounded-xl */
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reseller-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.reseller-card-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reseller-card h3 {
    font-size: 1.125rem; /* Same as React text-lg */
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.reseller-card p {
    font-size: 0.875rem; /* Same as React text-sm */
    color: #fed7aa; /* Same as React text-orange-100 */
    line-height: 1.5;
}

/* Button Actions - Exact React Style */
.reseller-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .reseller-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-reseller-primary, .btn-reseller-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem; /* Same as React text-lg */
    font-weight: 600;
    border-radius: 0.5rem; /* Same as React rounded-lg */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* Primary Button - Exact React Style */
.btn-reseller-primary {
    background: white;
    color: #f97316;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-reseller-primary:hover {
    background: #f9fafb; /* Same as React hover:bg-gray-100 */
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Secondary Button - Exact React Style */
.btn-reseller-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reseller-secondary:hover {
    background: white;
    color: #f97316;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .reseller-header h2 {
        font-size: 1.875rem; /* 3xl on mobile */
    }
    
    .reseller-subtitle {
        font-size: 1.125rem;
    }
    
    .reseller-benefits {
        gap: 1.5rem;
    }
    
    .btn-reseller-primary, .btn-reseller-secondary {
        width: 100%;
        min-width: auto;
    }
}