/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F7B267;
    --primary-dark: #E89F4C;
    --secondary-color: #E7D7C1;
    --dark: #3E5375;
    --dark-light: #5A6F8E;
    --gray: #555555;
    --gray-light: #B8C5D6;
    --light: #F1F2F4;
    --white: #ffffff;
    --text-body: #4a4a4a;
    --gradient: linear-gradient(135deg, #F7B267 0%, #E7D7C1 100%);
    --shadow: 0 10px 30px rgba(62, 83, 117, 0.1);
    --shadow-lg: 0 20px 60px rgba(62, 83, 117, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: #F1F2F4;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(62, 83, 117, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

/*.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 178, 103, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}*/

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-cta {
    display: none;
}

.hero-cta-desktop {
    display: inline-block;
}

.hero-content {
    z-index: 1;
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 178, 103, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 6px 25px rgba(247, 178, 103, 0.4);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.floating-card .icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.why-text {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-body);
    font-weight: 500;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.approach-card p {
    color: var(--text-body);
    line-height: 1.7;
}

.approach-cta {
    text-align: center;
}

/* Target Audience Section */
.target-audience-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--light) 0%, #faf8f5 100%);
    position: relative;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

/*.target-audience-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}*/

.target-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(62, 83, 117, 0.12);
    position: relative;
}

.target-intro {
    font-size: 1.3rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.target-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.target-description {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.questionnaire-list {
    list-style: none;
    margin: 2.5rem auto;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.questionnaire-list li {
    font-size: 1.05rem;
    color: var(--dark);
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-light);
}

.questionnaire-list li:last-child {
    border-bottom: none;
}

.questionnaire-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.target-cta {
    margin-top: 2rem;
}

/* Team Section */
.team-section {
    padding: 7rem 0 8rem;
    background: var(--light);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.8), transparent);
    pointer-events: none;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: var(--light);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--dark);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-intro p:last-child {
    margin-bottom: 0;
}

.team-expertise {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.team-expertise li {
    font-size: 1.05rem;
    color: #4a4a4a;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.team-expertise li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(62, 83, 117, 0.15);
}

.photo-placeholder {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.member-role {
    color: var(--text-body);
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: var(--primary-dark);
}

/* Questionnaire Section */
.questionnaire-section {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.questionnaire-section .section-title {
    color: var(--white);
}

.questionnaire-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.questionnaire-note {
    margin-top: 1.5rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: var(--light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.trust-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
}

.trust-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.trust-card p {
    color: var(--text-body);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo p {
    color: var(--gray-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }

    .hero-cta {
        display: block;
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-cta-desktop {
        display: none;
    }

    .floating-card {
        padding: 1rem 1.5rem;
    }

    .floating-card .icon svg {
        width: 24px;
        height: 24px;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    .approach-grid,
    .team-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: block !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .team-intro {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .why-section,
    .approach-section,
    .team-section,
    .questionnaire-section,
    .trust-section {
        padding: 4rem 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
