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

:root {
    --primary-dark: #2b2d42;
    --secondary-dark: #1a1b2e;
    --accent-red: #c4414b;
    --light-gray: #8d99ae;
    --white: #ffffff;
    --gray-bg: #939393;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--primary-dark);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.3rem;
}

h3 {
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: var(--secondary-dark);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-red);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 35px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Sections */
.hero-home {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/professional-meeting.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-dark));
}

.hero-home h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.hero-description {
    max-width: 650px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0;
}

.hero-cta {
    margin-top: 20px;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.page-hero {
    padding: 100px 0;
    background-color: var(--primary-dark);
    position: relative;
    text-align: center;
}

.page-hero.has-bg {
    background-size: cover;
    background-position: center;
}

.page-hero.team-hero {
    background: linear-gradient(rgba(42, 45, 66, 0.8), rgba(42, 45, 66, 0.8)), url('../images/professional-meeting.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.contact-hero {
    background: url('../images/contact-red-bar-top.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--accent-red);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--secondary-dark));
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.services-hero,
.tools-hero {
    background: linear-gradient(rgba(42, 45, 66, 0.85), rgba(42, 45, 66, 0.85)), url('../images/presentation-casual.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* Content Sections */
.purpose-section,
.who-section,
.philosophy-section,
.values-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
    position: relative;
}

.purpose-section::before,
.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-red) 0%, transparent 100%);
}

.purpose-grid,
.who-grid,
.philosophy-grid,
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.purpose-section h2,
.who-section h2,
.philosophy-section h2,
.values-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.purpose-content p,
.who-content p,
.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.purpose-highlight {
    font-style: normal;
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray-bg);
    border-radius: 8px;
}

/* Image Styles */
.philosophy-image img,
.values-image img,
.who-image img,
.purpose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-placeholder.circular {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* Framework Section */
.framework-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.framework-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.framework-section p {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.framework-visual {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.framework-badge-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.framework-badge-img:hover {
    transform: scale(1.05);
}

.framework-badge {
    border: 4px solid var(--white);
    border-radius: 50%;
    padding: 60px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.framework-badge:hover {
    transform: rotate(-5deg) scale(1.05);
}

.framework-badge-large {
    border: 5px solid var(--white);
    border-radius: 50%;
    padding: 80px 60px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    transform: rotate(-5deg);
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.framework-badge-large:hover {
    transform: rotate(-5deg) scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--accent-red);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.1));
}

.testimonials-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
}

/* Story Content */
.story-content {
    max-width: 900px;
    margin-top: 30px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

/* Values List */
.values-list {
    list-style: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: -0.02em;
}

.values-list li {
    margin-bottom: 15px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95));
    text-align: center;
}

.why-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
}

.why-section p {
    font-size: 1.65rem;
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: 0 auto;
}

/* Team Section */
.team-intro {
    max-width: 900px;
    margin-top: 30px;
}

.team-intro p {
    font-size: 1.18rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 25px;
}

.team-members {
    padding: 100px 0;
    background: url('../images/team-office-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-dark);
    position: relative;
}

.team-members::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 46, 0.92);
    z-index: 0;
}

.team-members .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
    margin-bottom: 90px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(196, 65, 75, 0.4);
}

.team-info h3 {
    font-size: 1.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.team-info .role {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.team-info .bio {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    font-size: 1.05rem;
}
}

.team-footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-footer h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.team-footer p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

/* Services Section */
.services-list {
    padding: 100px 0;
    background: url('../images/services-dark-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-dark);
    position: relative;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 46, 0.9);
    z-index: 0;
}

.services-list .container {
    position: relative;
    z-index: 1;
}

.tools-list {
    padding: 100px 0;
    background: url('../images/tools-collaboration.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-dark);
    position: relative;
}

.tools-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 46, 0.92);
    z-index: 0;
}

.tools-list .container {
    position: relative;
    z-index: 1;
}

.services-grid,
.tools-grid {
    display: grid;
    gap: 50px;
}

.service-item,
.tool-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-marker,
.tool-marker {
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(196, 65, 75, 0.3);
    position: relative;
}

.service-marker::after,
.tool-marker::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-red);
    border-radius: 2px;
}

.service-content h3,
.tool-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-content p,
.tool-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.85;
}

.services-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(196, 65, 75, 0.85), rgba(196, 65, 75, 0.85)), url('../images/services-books.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.services-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.03em;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-red);
    padding: 18px 48px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Framework Visual Section */
.framework-visual-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.framework-visual-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.035em;
}

.framework-visual-section p {
    max-width: 850px;
    margin: 0 auto 70px;
    font-size: 1.18rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.framework-diagram {
    display: flex;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: url('../images/contact-dark-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-dark);
    position: relative;
}
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 46, 0.85);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.035em;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--gray-bg);
    border: none;
    border-radius: 4px;
    color: var(--secondary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #a83841;
}

.form-message {
    max-width: 700px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #4caf50;
    color: var(--white);
    display: block;
}

.form-message.error {
    background-color: #f44336;
    color: var(--white);
    display: block;
}

/* Reach Section */
.reach-section {
    padding: 100px 0;
    background: url('../images/contact-red-bar-bottom.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
    text-align: center;
    position: relative;
}

.reach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 66, 0.7);
    z-index: 0;
}

.reach-section .container {
    position: relative;
    z-index: 1;
}

.reach-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.035em;
}

.reach-section p {
    font-size: 1.3rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
}

.reach-section a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.reach-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    padding: 70px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.footer-col a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.02rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo img {
        height: 30px;
    }

    .footer-logo img {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        background-color: var(--secondary-dark);
        width: 70%;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-home h1,
    .page-hero h1 {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .contact-hero h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .purpose-grid,
    .who-grid,
    .philosophy-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .framework-badge,
    .framework-badge-large {
        font-size: 1.2rem;
        padding: 40px 20px;
    }

    .framework-badge-img {
        max-width: 400px;
    }

    .clarity-grid,
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clarity-section h2,
    .framework-section h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }

    .philosophy-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-section h2,
    .why-section h2 {
        font-size: 2.2rem;
    }

    .join-section h2 {
        font-size: 1.8rem;
    }

    .philosophy-image img,
    .values-image img {
        height: 350px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillars-section h2,
    .together-section h2,
    .services-cta-section h2,
    .team-cta-section h2 {
        font-size: 2.2rem;
    }

    .framework-detail-card,
    .together-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tools-intro-section h2,
    .frameworks-together-section h2,
    .tools-cta-section h2 {
        font-size: 2.2rem;
    }

    .framework-badge-image {
        max-width: 300px;
    }

    .framework-visual-box {
        width: 280px;
        height: 280px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }

    .footer-logo img {
        height: 40px;
    }

    .hero-home h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.08rem;
        line-height: 1.75;
    }

    .page-hero h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .purpose-section h2,
    .who-section h2,
    .philosophy-section h2,
    .values-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .service-content h3,
    .tool-content h3 {
        font-size: 1.4rem;
    }

    .values-list {
        font-size: 1.4rem;
    }
}

/* Hero CTA Group */
.hero-cta-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background-color: #a83841;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 65, 75, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary-large:hover {
    background-color: #a83841;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 65, 75, 0.4);
}

/* Clarity Section */
.clarity-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.clarity-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.035em;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.clarity-item h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.clarity-item p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

/* Updated Who Section for Cards */
.who-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.who-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.035em;
}

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

.who-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.who-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.who-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--accent-red);
}

.who-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Updated Framework Section */
.framework-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.framework-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.035em;
}

.framework-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.framework-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.framework-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.framework-card h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    color: var(--accent-red);
}

.framework-type {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.framework-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.framework-note {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

/* Section Dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(to right, var(--accent-red) 0%, var(--accent-red) 100%);
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .section-divider {
        height: 2px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95)), url('../images/professional-meeting.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 66, 0.9);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.035em;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

/* About Page Sections */
.about-hero {
    background: linear-gradient(rgba(42, 45, 66, 0.85), rgba(42, 45, 66, 0.85)), url('../images/professional-meeting.jpg');
    background-size: cover;
    background-position: center;
}

.story-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.story-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.035em;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.philosophy-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.philosophy-content p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    letter-spacing: -0.01em;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    border-radius: 2px;
}

.values-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95));
    text-align: center;
}

.why-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.035em;
}

.why-section p {
    font-size: 1.2rem;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.95);
}

.join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95));
    text-align: center;
}

.join-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.join-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Team Page Sections */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.team-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95)), url('../images/team-office-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.team-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 66, 0.9);
    z-index: 0;
}

.team-cta-section .container {
    position: relative;
    z-index: 1;
}

.team-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.035em;
}

.team-cta-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

/* Services/What We Do Page */
.pillars-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.pillars-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.035em;
}

.pillars-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pillar-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    opacity: 0.3;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.pillar-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.pillar-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
}

.together-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.together-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.035em;
}

.together-section p {
    max-width: 850px;
    margin: 0 auto 25px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.together-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 40px;
}

.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95)), url('../images/services-books.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 66, 0.9);
    z-index: 0;
}

.services-cta-section .container {
    position: relative;
    z-index: 1;
}

.services-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.035em;
}

.services-cta-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

/* Tools Page */
.tools-intro-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
    text-align: center;
}

.tools-intro-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.035em;
}

.tools-intro-section p {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.frameworks-detail-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.framework-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.framework-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.framework-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.framework-badge-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.framework-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    color: var(--accent-red);
}

.framework-tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-gray);
    margin-bottom: 25px;
    font-weight: 600;
}

.framework-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.framework-use {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-red);
    border-radius: 4px;
}

.framework-visual-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.framework-visual-box {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(196, 65, 75, 0.2), rgba(196, 65, 75, 0.05));
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.framework-visual-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-red);
}

.framework-visual-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.frameworks-together-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.frameworks-together-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.035em;
}

.together-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.together-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.together-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.together-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--accent-red);
}

.together-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.tools-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 45, 66, 0.95), rgba(26, 27, 46, 0.95)), url('../images/tools-collaboration.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.tools-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 66, 0.9);
    z-index: 0;
}

.tools-cta-section .container {
    position: relative;
    z-index: 1;
}

.tools-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.035em;
}

.tools-cta-section p {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

/* Contact Page */
.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.contact-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Sticky Contact Icons */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sticky-icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
}

.whatsapp-icon:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-icon {
    background-color: var(--accent-red);
    color: white;
}

.call-icon:hover {
    background-color: #a83841;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 65, 75, 0.4);
}

@media (max-width: 768px) {
    .sticky-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .sticky-icon {
        width: 50px;
        height: 50px;
    }
    
    .sticky-icon svg {
        width: 24px;
        height: 24px;
    }
}

