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

:root {
    --primary-blue: #4973c1;
    --primary-blue-dark: #3b5a99;
    --accent-orange: #de6600;
    --accent-orange-hover: #c45a00;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --gray-text: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background-color: #ffffff;
    color: var(--dark-text);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

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

.logo-image {
    height: 75px;
    width: auto;
    mix-blend-mode: multiply;
}

.logo-text h1.restige-text {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #000;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-shop {
    background-color: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--light-text);
    padding: 8px 20px;
}

.btn-shop:hover {
    background-color: var(--accent-orange);
}

.btn-shop-dark {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
    background-color: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--dark-text);
}

.btn-shop-dark:hover {
    background-color: var(--accent-orange);
    color: white;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--light-text);
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--light-text);
    color: var(--light-text);
    backdrop-filter: blur(5px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(31, 46, 77, 0.85) 0%, rgba(73, 115, 193, 0.75) 100%), url('images/media__1775810819072.jpg') center/cover;
    color: var(--light-text);
    padding: 140px 0 120px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero .badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(222, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(222, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(222, 102, 0, 0);
    }
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.stat-card p {
    color: var(--gray-text);
    font-size: 15px;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.founder-image {
    flex: 0 0 320px;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.founder-content {
    flex: 1;
}

.founder-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.founder-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-text);
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent-orange);
    line-height: 1.6;
}

/* B2B Section */
.b2b-section {
    padding: 100px 0;
    background-color: #fff;
}

.b2b-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.b2b-text {
    flex: 1;
}

.b2b-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.b2b-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--gray-text);
}

.features-list {
    margin-bottom: 25px;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    list-style-type: none;
}

.features-list li::before {
    content: "✓";
    color: var(--accent-orange);
    position: absolute;
    left: -20px;
}

.highlight-box {
    background-color: #fff;
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.highlight-box h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 20px;
}

.highlight-box p {
    margin-bottom: 5px;
    font-size: 16px;
}

.highlight-box a {
    color: var(--accent-orange);
    font-weight: 600;
    transition: opacity 0.2s;
}

.highlight-box a:hover {
    opacity: 0.8;
}

.b2b-image {
    flex: 1;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.partners-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.partners-image img {
    max-width: 100%;
    mix-blend-mode: multiply;
}

/* Career Section */
.career-section {
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80') center/cover fixed;
    position: relative;
    color: white;
    text-align: center;
}

.career-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 46, 77, 0.85); /* Dark blue overlay */
}

.career-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.career-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.career-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.career-perks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.perk {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.team-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.team-img:hover {
    transform: scale(1.03);
    border-color: var(--accent-orange);
}

/* Footer / Contact */
.footer {
    background-color: #1a2536;
    color: var(--light-text);
    padding: 80px 0 20px;
}

.footer-container {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info {
    flex: 1;
}

.footer-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 16px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}

.footer-link {
    display: inline-block;
    color: #588bea;
    font-weight: 600;
    font-size: 18px;
}

.footer-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-tiktok:hover {
    background: var(--accent-orange);
}

.footer-qr {
    margin-top: 25px;
}

.footer-qr img {
    border: 5px solid white;
    border-radius: 8px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-submit {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.5;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 900px) {
    .nav {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-container {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-content blockquote {
        text-align: left;
    }
    
    .b2b-container {
        flex-direction: column;
    }
    
    .team-photos {
        grid-template-columns: 1fr;
    }
    
    .career-perks {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
    }
}
