/* PeersBridge Landing Page Styles */
/* Brand Colors:
   Primary Blue: #2E5DAB
   Secondary Orange: #F4A261
   Neutral Dark Gray: #333333
   Neutral Light Gray: #F7F7F7
   Success Green: #2CA58D
*/

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #2E5DAB;
    --primary-blue-dark: #234a8c;
    --primary-blue-light: #4a7bc7;
    --secondary-orange: #F4A261;
    --secondary-orange-dark: #e88f3f;
    --neutral-dark: #333333;
    --neutral-gray: #666666;
    --neutral-light: #F7F7F7;
    --success-green: #2CA58D;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--neutral-gray);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background-color: var(--neutral-light);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--neutral-dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links .btn {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-dark);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 1.125rem;
    color: var(--neutral-dark);
    border-bottom: 1px solid var(--neutral-light);
}

.mobile-menu .btn {
    margin-top: 8px;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
}

.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--success-green);
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--neutral-gray);
}

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

.trust-badge {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.875rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--neutral-gray);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Problem Section */
.problem-section {
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background-color: var(--neutral-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary-orange);
}

.problem-card h3 {
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.9375rem;
}

/* Solution/Features Section */
.solution-section {
    background: linear-gradient(180deg, var(--neutral-light) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-icon-primary {
    background-color: rgba(46, 93, 171, 0.1);
}

.feature-icon-primary svg {
    stroke: var(--primary-blue);
}

.feature-icon-orange {
    background-color: rgba(244, 162, 97, 0.1);
}

.feature-icon-orange svg {
    stroke: var(--secondary-orange);
}

.feature-icon-green {
    background-color: rgba(44, 165, 141, 0.1);
}

.feature-icon-green svg {
    stroke: var(--success-green);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.step-content p {
    font-size: 0.875rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    margin-top: 32px;
}

/* Trust Score Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-text .section-title {
    color: var(--white);
}

.text-left {
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.trust-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-benefits svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--secondary-orange);
    margin-top: 2px;
}

.trust-visual {
    display: flex;
    justify-content: center;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 100%;
    max-width: 340px;
    box-shadow: var(--shadow-xl);
}

.trust-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.trust-label {
    font-weight: 600;
    color: var(--neutral-dark);
}

.trust-badge-large {
    background-color: var(--success-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trust-meter {
    height: 12px;
    background-color: var(--neutral-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.trust-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--success-green));
    border-radius: 6px;
    transition: width 1s ease;
}

.trust-score-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 24px;
}

.trust-tiers {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.tier {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background-color: var(--neutral-light);
    border-radius: var(--radius-sm);
}

.tier-active {
    background-color: rgba(44, 165, 141, 0.1);
    border: 2px solid var(--success-green);
}

.tier-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

.tier-range {
    display: block;
    font-size: 0.625rem;
    color: var(--neutral-gray);
    margin-top: 4px;
}

/* Highlights Section */
.highlights-section {
    background-color: var(--neutral-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-item svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-blue);
    margin-bottom: 16px;
}

.highlight-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.highlight-item p {
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-orange-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1, .hero-title { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        align-items: center;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-text {
        text-align: center;
    }

    .trust-text .section-title {
        text-align: center;
    }

    .trust-benefits {
        align-items: center;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .step {
        max-width: 300px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1, .hero-title {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px;
    }

    .trust-card {
        padding: 24px;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--neutral-light);
    border: 2px solid var(--neutral-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

.lang-switcher:hover {
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.lang-flag {
    font-weight: 700;
}

.lang-switcher-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--neutral-light);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--neutral-dark);
    transition: var(--transition);
    width: 100%;
}

.lang-switcher-mobile:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--neutral-light) 100%);
}

.pricing-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-blue);
    position: relative;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 8px;
    margin-top: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-gray);
}

.price-period {
    font-size: 1rem;
    color: var(--neutral-gray);
}

.pricing-description {
    font-size: 1rem;
    color: var(--neutral-gray);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-green);
    flex-shrink: 0;
}

.pricing-features span {
    font-size: 0.9375rem;
    color: var(--neutral-dark);
}

.pricing-cta {
    width: 100%;
    margin-bottom: 12px;
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--neutral-gray);
}

/* Pricing Responsive */
@media (max-width: 480px) {
    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}
