/* Profit Pilot CFO - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    position: relative;
}

/* Ensure all links are clickable */
a {
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
    cursor: pointer;
}

a[href^="mailto:"] {
    pointer-events: auto !important;
    cursor: pointer;
    z-index: 1000;
}

/* Subtle background pattern for entire page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(245, 158, 11, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

/* Subtle dot pattern overlay */
.bg-dots {
    background-image: radial-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Subtle grid pattern */
.bg-grid {
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Diagonal lines pattern */
.bg-diagonal {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(59, 130, 246, 0.02) 35px,
        rgba(59, 130, 246, 0.02) 70px
    );
}

/* Navigation */
.navbar {
    background: #0f172a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-subtitle {
    color: #f59e0b;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f59e0b;
}

.nav-links a.active {
    color: #f59e0b;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: #f59e0b;
}

.dropdown-toggle.active {
    color: #f59e0b;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #f59e0b;
}

.cta-button {
    background: #f59e0b;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d97706;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
}

/* Hero Sections */
.hero {
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 50%, #3b82f6 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero with logo styling */
.hero-logo {
    padding-top: 4rem;
}

/* PP Logo Styles */
.pp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.5rem;
}

.pp-left, .pp-right {
    font-family: Georgia, Times, serif;
    font-size: 5rem;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.pp-left {
    transform: translateY(-8px);
}

.pp-right {
    transform: translateY(8px);
}

.pp-line {
    width: 1.5px;
    height: 90px;
    background: white;
    margin: 0 2px;
}

.logo-title-text {
    font-family: Georgia, Times, serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: white;
    margin: 0.5rem 0 0.25rem;
}

.logo-subtitle-text {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
}

.hero-slogan {
    font-family: Georgia, Times, serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

/* Slide-in from left Animation */
.slide-up-1, .slide-up-2 {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInRight 650ms ease-out forwards;
}

.slide-up-2 {
    animation-delay: 120ms;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Respect reduced-motion settings */
@media (prefers-reduced-motion: reduce) {
    .slide-up-1, .slide-up-2 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.hero-content {
    margin-top: 1rem;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content h2 span {
    color: #f59e0b;
}

.hero-large {
    padding: 6rem 2rem 5rem;
}

/* Airplane Decorations */
.hero::before {
    content: '✈';
    position: absolute;
    font-size: 8rem;
    opacity: 0.06;
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.hero::after {
    content: '✈';
    position: absolute;
    font-size: 12rem;
    opacity: 0.05;
    bottom: 5%;
    right: 5%;
    transform: rotate(15deg);
}

.airplane-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-size: 2rem;
    opacity: 0.7;
}

.airplane-row span {
    animation: float 3s ease-in-out infinite;
}

.airplane-row span:nth-child(2) { animation-delay: 0.5s; }
.airplane-row span:nth-child(3) { animation-delay: 1s; }
.airplane-row span:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

.hero h1 span {
    color: #f59e0b;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-label {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 50%, #3b82f6 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Page hero with logo */
.page-hero.hero-logo {
    padding-top: 3rem;
}

.page-hero .pp-logo {
    margin-bottom: 0.25rem;
}

.page-hero .pp-left, .page-hero .pp-right {
    font-size: 3.5rem;
}

.page-hero .pp-line {
    height: 65px;
}

.page-hero .logo-title-text {
    font-size: 1.25rem;
    letter-spacing: 0.25em;
}

.page-hero .logo-subtitle-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero-slogan {
    font-family: Georgia, Times, serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.page-hero::before {
    content: '✈';
    position: absolute;
    font-size: 6rem;
    opacity: 0.06;
    top: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
}

/* Add subtle floating shapes to sections */
.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    pointer-events: none;
}

.section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: -50px;
    pointer-events: none;
}

.section-light {
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
}

/* Remove pseudo-elements from section-light to avoid overlap */
.section-light::before,
.section-light::after {
    display: none;
}

.section-dark {
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '✈';
    position: absolute;
    font-size: 5rem;
    opacity: 0.05;
    top: 20%;
    left: 5%;
}

.section-dark::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.section-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header h2 {
    color: white;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card:hover::before {
    opacity: 1;
}

/* Ensure links inside cards are always clickable */
.card a {
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 0.75rem;
}

/* Service Cards (clickable) */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.service-card .arrow {
    color: #f59e0b;
    font-weight: 600;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-tab {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-width: 140px;
}

.pricing-tab:hover {
    border-color: #f59e0b;
}

.pricing-tab.active {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.pricing-tab .tab-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-tab .tab-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-tab .tab-price {
    font-size: 0.8rem;
    opacity: 0.8;
}

.pricing-tab.active .tab-price {
    opacity: 1;
}

/* Pricing Content */
.pricing-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.pricing-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

.pricing-panel h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pricing-panel .price-tag {
    font-size: 2rem;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-panel .price-period {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-panel .description {
    color: #666;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

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

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature .check {
    color: #10b981;
    font-weight: bold;
    margin-top: 2px;
}

.pricing-feature span {
    font-size: 0.9rem;
    color: #555;
}

/* À La Carte Tabs */
.alacarte-section {
    margin-top: 4rem;
}

.alacarte-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.alacarte-tab {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.alacarte-tab:hover {
    color: #0f172a;
}

.alacarte-tab.active {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
}

.alacarte-panel {
    display: none;
}

.alacarte-panel.active {
    display: block;
}

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

.alacarte-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #f59e0b;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.alacarte-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.alacarte-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.alacarte-card h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.alacarte-card p {
    font-size: 0.85rem;
    color: #666;
}

/* About / Bio Section */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.bio-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.bio-content h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.bio-content .subtitle {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bio-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.bio-stat {
    text-align: center;
}

.bio-stat .number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f59e0b;
}

.bio-stat .label {
    font-size: 0.8rem;
    color: #888;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.credential-tag {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* Industries / Partners */
.industries-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.industry-tag.featured {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    color: #f59e0b;
}

/* Countries */
.countries-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.country-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f59e0b, #3b82f6);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #f59e0b;
    line-height: 0;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonial-name {
    font-weight: 600;
    color: #0f172a;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #888;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    position: relative;
    z-index: 50;
}

.contact-info {
    position: relative;
    z-index: 50;
}

.contact-info h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.contact-item-text {
    color: #0f172a;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.contact-item-text a {
    color: #f59e0b;
    cursor: pointer;
    text-decoration: underline;
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
}

.contact-photo {
    margin-top: 2rem;
}

.contact-photo img {
    width: 260px;
    height: 320px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #f59e0b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #d97706;
}

/* News / Blog Preview */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.news-image {
    height: 160px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Featured Image Boxes */
.feature-image-box {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-image-box::before {
    content: '✈';
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    top: -10%;
    right: -5%;
    transform: rotate(15deg);
}

.feature-image-box .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-image-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-image-box p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Creative Design Elements */
.decorative-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #3b82f6 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.gradient-text {
    background: linear-gradient(90deg, #f59e0b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Visual Interest Cards */
.visual-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.visual-card-header {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.visual-card-header .icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.visual-card-body {
    padding: 1.5rem;
}

/* Stat Boxes */
.stat-box {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.stat-box .label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 100%;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, #f59e0b, transparent);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Floating Elements Animation */
@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.pulse-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Border Cards */
.gradient-border-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gradient-border-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #3b82f6 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

/* Service Icon Circles */
.service-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(59,130,246,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    border: 2px solid rgba(245,158,11,0.2);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Values / Careers */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '✈';
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    top: 10%;
    right: 10%;
    transform: rotate(20deg);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d97706;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: #0f172a;
}

/* Quick Consult Box */
.consult-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consult-box::before {
    content: '✈';
    position: absolute;
    font-size: 8rem;
    opacity: 0.03;
    top: -20px;
    right: -20px;
    transform: rotate(15deg);
}

.consult-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #3b82f6 100%);
}

.consult-box h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.consult-box p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

footer::after {
    content: '✈';
    position: absolute;
    font-size: 15rem;
    opacity: 0.02;
    bottom: -50px;
    left: 5%;
    transform: rotate(-15deg);
    pointer-events: none;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #f59e0b;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
}

.footer-section a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 10;
}

/* Service Detail Page */
.service-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-detail-header p {
    color: #555;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-feature .icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-feature h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.service-feature p {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .bio-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio-image {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f172a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .cards-grid,
    .cards-grid-3,
    .testimonials-grid,
    .news-grid,
    .values-grid,
    .alacarte-grid {
        grid-template-columns: 1fr;
    }
    .pricing-features {
        grid-template-columns: 1fr;
    }
    .bio-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    /* Stat boxes responsive */
    .stat-box {
        padding: 1.5rem 1rem;
    }
    .stat-box .number {
        font-size: 1.75rem;
    }
    /* 4-column stat grid to 2x2 */
    .section > .container > div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .pricing-tabs {
        flex-direction: column;
    }
    .pricing-tab {
        width: 100%;
    }
}


/* CFO Clarity Sprint Card */
.clarity-sprint-card {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: left;
}

.clarity-sprint-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.clarity-sprint-card .sprint-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.clarity-sprint-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.clarity-sprint-card li {
    padding: 0.25rem 0;
    color: #333;
    font-size: 0.9rem;
}

.clarity-sprint-card li::before {
    content: "•";
    margin-right: 0.5rem;
    color: #64748b;
}

.clarity-sprint-card .sprint-pricing {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin: 0;
}



/* Case Study Styles */
.case-study-card {
    display: flex;
    flex-direction: column;
}

.case-study-card h3 {
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.case-study-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-study-wins {
    flex: 1;
}

.case-study-wins h4 {
    font-size: 0.85rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-wins ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-wins li {
    font-size: 0.85rem;
    color: #555;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.case-study-wins li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

/* Case Study Detail Page */
.case-study-detail {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-section {
    margin-bottom: 2.5rem;
}

.case-study-section h3 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f59e0b;
    display: inline-block;
}

.case-study-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.case-study-section ul {
    list-style: none;
    padding: 0;
}

.case-study-section li {
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.case-study-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.snapshot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.snapshot-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: #555;
}

.impact-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    padding: 2rem;
    border-radius: 12px;
}

.impact-section h3 {
    color: white;
    border-bottom-color: #f59e0b;
}

.impact-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

