/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --tnaado-red: #A81327;
    --tnaado-dark: #8B0000;
    --text-dark: #1a1a1a;
    --text-body: #333;
}

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

body {
    background-color: #fff;
    color: var(--text-body);
    overflow-x: hidden;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    text-align: center;
}

/* Hero Section - NEW */
.hero-section-new {
    background: linear-gradient(135deg, #8B0E1F 0%, #A81327 50%, #C91F37 100%);
    padding: 140px 40px 100px;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content-wrapper-new {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-left-new {
    text-align: center;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title-new {
    font-size: 3.2rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle-new {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    line-height: 1.4;
}

.hero-description-new {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for New Hero */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 100px 24px 60px;
    }

    .hero-title-new {
        font-size: 2rem;
    }

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

    .hero-description-new {
        font-size: 1rem;
    }
}

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

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--tnaado-red);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.7;
    font-weight: 600;
}

/* Badge Display Section */
.badge-display-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

.badge-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.badge-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #ffffff !important;
    border-radius: 16px;
    border: 2px solid var(--tnaado-red);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(168, 19, 39, 0.3);
}

.badge-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 45px rgba(168, 19, 39, 0.6);
}

.verification-badge-demo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(168, 19, 39, 0.3);
    margin: 0 auto 1.5rem;
}

.verification-badge-demo:hover {
    transform: scale(1.1);
}

.verification-badge-demo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 19, 39, 0.95);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 2.5rem;
}

.verification-badge-demo:hover::after {
    opacity: 1;
    content: '\f029';
}

.badge-content-demo {
    text-align: center;
    color: #A81327;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.badge-type-demo {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #A81327;
    line-height: 1;
}

.badge-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tnaado-red);
    margin-bottom: 0.8rem;
}

.badge-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Example Section */
.example-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.example-badge {
    text-align: center;
    padding: 3rem;
    background: #ffffff !important;
    border-radius: 20px;
    border: 3px solid var(--tnaado-red);
    box-shadow: 0 0 35px rgba(168, 19, 39, 0.4);
}

.example-badge h3 {
    color: var(--tnaado-red);
    margin-bottom: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
}

.checklist-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Verification Flow */
.verification-section {
    background: white;
    padding: 5rem 0;
}

.verification-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 3rem auto;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: #ffffff !important;
    border: 3px solid var(--tnaado-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--tnaado-red);
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(168, 19, 39, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    background: var(--tnaado-red) !important;
    color: #fff;
    box-shadow: 0 0 40px rgba(168, 19, 39, 0.6);
}

.flow-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--tnaado-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(168, 19, 39, 0.3);
}

.flow-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tnaado-red);
    margin-bottom: 0.8rem;
    text-align: center;
}

.flow-description {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
}

/* Features Section */
.why-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: #ffffff !important;
    border-radius: 12px;
    border: 2px solid var(--tnaado-red);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(168, 19, 39, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(168, 19, 39, 0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--tnaado-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(168, 19, 39, 0.4);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tnaado-red);
    margin-bottom: 0.8rem;
    text-align: left;
}

.feature-description {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: var(--tnaado-red);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--tnaado-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Warning Section */
.warning-section {
    background: var(--tnaado-dark);
    color: #fff;
    padding: 4rem 0;
}

.warning-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.warning-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #fff;
}

.url-example {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.url-example h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.url-good {
    background: rgba(40, 167, 69, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
}

.url-bad {
    background: rgba(220, 53, 69, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #dc3545;
}

.url-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Large badge for example */
.large-badge {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(168, 19, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.large-badge:hover {
    transform: scale(1.1);
}

.large-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 19, 39, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 3rem;
}

.large-badge:hover::after {
    opacity: 1;
    content: '\f029';
}

.large-badge-content {
    text-align: center;
    color: #A81327;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Tablet and below */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .badge-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .example-grid {
        grid-template-columns: 1fr !important;
    }

    .verification-flow {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-content-wrapper {
        padding: 2rem 1rem;
    }

    .hero-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

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

    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .badge-showcase {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .verification-flow {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    section {
        padding: 40px 1rem;
    }
}
