/* Sigurno - Main Stylesheet */

:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 0.8125rem;
}

h1 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.625rem;
}

h2 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.4375rem;
}

h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.375rem;
}

p {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

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

/* Header - Professional with Sharp Lines and 3D Depth */
.main-header {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    border-bottom: 3px solid #003d7a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 
                0 1px 3px rgba(0, 51, 122, 0.15) inset,
                0 -1px 6px rgba(0, 51, 122, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.main-nav {
    flex: 1;
    min-width: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3125rem 0.625rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 102, 204, 0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s;
}

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

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

.btn-secondary {
    background: #6c757d;
}

.btn-sm {
    padding: 0.4375rem 0.875rem;
    font-size: 0.8125rem;
}

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

/* Hero Section - Professional */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2.5rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Sections - Professional */
section {
    padding: 1.75rem 0;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    text-align: center;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Benefits Page */
.benefits-page {
    padding: 1.75rem 0;
}

.benefits-page .container {
    max-width: 1200px;
}

.benefits-page h1 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    text-align: center;
    color: var(--text-color);
    letter-spacing: -0.3px;
}

.benefits-section {
    margin-top: 1rem;
}

.benefits-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: left;
    color: var(--text-color);
}

.benefits-section h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: left;
    color: #666;
    line-height: 1.6;
}

.benefits-section p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--text-color);
}

.benefits-section p strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-card {
    background: var(--white);
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.625rem;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-color);
}

.benefit-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.step {
    text-align: center;
}

.step {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    border: 2px solid var(--secondary-color);
}

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.company-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.company-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
}

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

.company-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.company-logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    max-height: 150px;
    margin-bottom: 1rem;
}

.company-screenshot-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    margin-bottom: 1rem;
}

.company-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.company-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-weight: bold;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.company-initials {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    opacity: 0.9;
}

.company-name-text {
    font-size: 0.8125rem;
    opacity: 0.95;
    word-break: break-word;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 0;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: auto;
}

.testimonial-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.testimonial-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    position: relative;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #4a90e2);
    z-index: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-text-wrapper {
    flex: 1;
    min-width: 0;
}

.testimonial-author {
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.testimonial-author strong {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.testimonial-author span {
    display: inline-block;
    color: #666;
    font-size: 0.8125rem;
    margin-right: 0.5rem;
}

.testimonial-author .company-name {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.testimonial-text-wrapper p {
    margin: 0;
    color: #555;
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* CTA Section - Professional */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 0.875rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

/* Forms */
.auth-section, .apply-section, .verify-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.auth-box, .apply-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.875rem;
}

.form-group textarea {
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 0.75rem;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-expired, .status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #1e293b 100%);
    color: var(--white);
    padding: 1.5rem 0 0;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        #00a8ff 25%, 
        #0066cc 50%, 
        #00a8ff 75%, 
        var(--primary-color) 100%);
    background-size: 300% 100%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 204, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.footer-about {
    max-width: 380px;
}

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

.footer-logo h3 {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-tagline {
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    background: rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.25) 0%, rgba(0, 168, 255, 0.2) 100%);
    border: 1px solid rgba(0, 102, 204, 0.4);
    border-radius: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 102, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 102, 204, 0.6);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), #00a8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.5);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(0, 102, 204, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0, 102, 204, 0.7); }
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00a8ff, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    font-size: 0.875rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), #00a8ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 1.25rem;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.05));
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: scaleY(1);
}

.link-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 102, 204, 0.5));
}

.footer-links a:hover .link-icon {
    transform: translateX(8px) scale(1.1);
    color: #00a8ff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 168, 255, 0.1));
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

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

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
    transform: translateX(3px);
}

.footer-social {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), #00a8ff);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 
        0 10px 25px rgba(0, 102, 204, 0.5),
        0 0 20px rgba(0, 102, 204, 0.3);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

.footer-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    padding: 1.25rem 1.25rem;
    border: 1px solid rgba(135, 206, 250, 0.3);
    border-radius: 12px;
    margin: 1.25rem 1rem 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(15px);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 102, 204, 0.4) 20%, 
        rgba(0, 168, 255, 0.6) 50%, 
        rgba(0, 102, 204, 0.4) 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 16px 16px 0 0;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 168, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.copyright-section {
    flex: 1;
    min-width: 250px;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.copyright strong {
    color: var(--white);
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    letter-spacing: -0.3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.legal-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 168, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-link:hover::before {
    opacity: 1;
}

.legal-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 102, 204, 0.3));
}

.legal-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 102, 204, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.legal-link:hover .legal-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 6px rgba(0, 102, 204, 0.6));
}

.separator {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 20%, 
        rgba(255, 255, 255, 0.2) 80%, 
        transparent 100%);
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.4);
}

/* Language Switcher */
.language-switcher-container {
    position: relative;
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-name {
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.language-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.lang-option .lang-flag {
    font-size: 1.3rem;
}

.lang-option .lang-name {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0 0;
        margin-top: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-section {
        padding: 1.25rem;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .language-switcher {
        margin-top: 0.5rem;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

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

.text-left {
    text-align: left;
}

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

/* Verify Page */
.certificate-verify {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.certificate-header {
    text-align: center;
    padding: 2rem;
    background: var(--success-color);
    color: var(--white);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.certificate-header.expired {
    background: var(--error-color);
}

.certificate-info,
.certificate-details {
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.code-block {
    width: 100%;
    padding: 1rem;
    background: #f4f4f4;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    resize: vertical;
    min-height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .steps,
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .copyright-section {
        width: 100%;
    }
    
    .copyright {
        justify-content: center;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .legal-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-bottom {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0.5rem 0;
        border-radius: 12px;
    }
}

