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

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC107;
    --light-yellow: #FFF9C4;
    --dark-gray: #333333;
    --light-gray: #666666;
    --white: #FFFFFF;
    --light-bg: #FAFAFA;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-secondary: linear-gradient(135deg, #FFF9C4 0%, #FFD700 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--gradient-primary);
    color: var(--dark-gray) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-yellow) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-with-bg {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.7) 100%), 
                url('../images/professional-meeting.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.services {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.separator {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover .team-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.team {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.team-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.team-image-wrapper:first-child {
    transform: translateY(-20px);
}

.team-image-wrapper:last-child {
    transform: translateY(20px);
}

.meeting-image,
.letters-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image-wrapper:hover .meeting-image,
.team-image-wrapper:hover .letters-image {
    transform: scale(1.05);
}

.team-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
}

.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--dark-gray);
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.cta .btn-primary:hover {
    background: var(--light-bg);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.cta .shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta .shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -75px;
    animation-delay: 3s;
}

.cta .shape-3 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: 50%;
    animation-delay: 6s;
}

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

.legal-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-yellow) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.125rem;
    color: var(--light-gray);
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-document h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: var(--dark-gray);
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--dark-gray);
}

.legal-document p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.legal-document ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--light-gray);
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.section-divider {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.geometric-shapes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.diamond-shape {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    transform: rotate(45deg);
    animation: float 3s ease-in-out infinite;
}

.triangle-shape {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--primary-yellow);
    animation: float 3s ease-in-out infinite 0.5s;
}

.circle-shape {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite 1s;
}

.hexagon-shape {
    width: 40px;
    height: 23px;
    background: var(--primary-yellow);
    position: relative;
    animation: float 3s ease-in-out infinite 1.5s;
}

.hexagon-shape:before,
.hexagon-shape:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.hexagon-shape:before {
    bottom: 100%;
    border-bottom: 11.5px solid var(--primary-yellow);
}

.hexagon-shape:after {
    top: 100%;
    border-top: 11.5px solid var(--primary-yellow);
}

.pentagon-shape {
    position: relative;
    width: 40px;
    height: 30px;
    background: var(--primary-yellow);
    animation: float 3s ease-in-out infinite;
}

.pentagon-shape:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid var(--primary-yellow);
}

.star-shape {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 14px solid var(--primary-yellow);
    transform: rotate(35deg);
    animation: float 3s ease-in-out infinite 0.7s;
}

.star-shape:before {
    content: '';
    position: absolute;
    left: -20px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 14px solid var(--primary-yellow);
    transform: rotate(-70deg);
}

.star-shape:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 3px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 14px solid var(--primary-yellow);
    transform: rotate(70deg);
}

.rhombus-shape {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    transform: rotate(45deg) skew(15deg, 15deg);
    animation: float 3s ease-in-out infinite 1.2s;
}

.wave-shape {
    width: 80px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.wave-shape:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50px;
}

.zigzag-shape {
    width: 0;
    height: 0;
    border-left: 15px solid var(--primary-yellow);
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--primary-yellow);
    position: relative;
    animation: float 3s ease-in-out infinite 0.8s;
}

.zigzag-shape:before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid var(--primary-yellow);
    border-top: 15px solid var(--primary-yellow);
}

.octagon-shape {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    position: relative;
    transform: rotate(22.5deg);
    animation: float 3s ease-in-out infinite;
}

.octagon-shape:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    transform: rotate(45deg);
}

.cross-shape {
    width: 40px;
    height: 12px;
    background: var(--primary-yellow);
    position: relative;
    animation: float 3s ease-in-out infinite 0.6s;
}

.cross-shape:before {
    content: '';
    position: absolute;
    top: -14px;
    left: 14px;
    width: 12px;
    height: 40px;
    background: var(--primary-yellow);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-with-bg {
        background-attachment: scroll;
    }
    
    .geometric-shapes {
        gap: 1.5rem;
    }
    
    .section-divider {
        padding: 40px 0;
    }
    
    .about-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-images {
        grid-template-columns: 1fr;
    }
    
    .team-image-wrapper:first-child,
    .team-image-wrapper:last-child {
        transform: none;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 0 1rem;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
}

/* Pricing Framework Styles */
.pricing-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.pricing-framework {
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.framework-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.framework-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.plan-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: #666;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.plan-button {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
