/* ============================================
   BusinessPro - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 999px;
    --transition: all 0.3s ease;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text-primary);
    border-color: var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-sans);
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    appearance: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-sans);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    opacity: 0.1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

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

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.feature-link i {
    transition: var(--transition);
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   Services Preview Section
   ============================================ */
.services-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.service-card.featured .service-content {
    padding: 2.5rem;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.service-content p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.25rem;
}

.author-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent-color);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.footer-logo i {
    color: var(--primary-light);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact ul li i {
    color: var(--primary-light);
    margin-top: 0.25rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    text-align: center;
}

.page-header-content h1 {
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-story {
    padding: 100px 0;
}

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-item h4 {
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.875rem;
    margin: 0;
}

.story-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: white;
    opacity: 0.5;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    flex: 1;
}

.stat-box .stat-number {
    font-size: 2rem;
}

.stat-box .stat-label {
    font-size: 0.75rem;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: white;
}

.mission-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.value-card h4 {
    font-family: var(--font-sans);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

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

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.why-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.why-card h3 {
    font-family: var(--font-sans);
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.why-features {
    margin-bottom: 0;
}

.why-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.why-features i {
    color: var(--primary-color);
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-overview {
    padding: 80px 0;
}

.services-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content p {
    font-size: 1.0625rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.intro-stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.intro-stat .stat-number {
    font-size: 1.75rem;
}

.intro-stat .stat-label {
    font-size: 0.875rem;
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-detail {
    margin-bottom: 4rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail.reverse .service-detail-content,
.service-detail.reverse .service-detail-image {
    direction: ltr;
}

.service-detail-content .section-badge {
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.service-features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-text h4 {
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    margin: 0;
}

.service-detail-image .image-placeholder.large {
    height: 400px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

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

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
    border: none;
}

.pricing-card.featured h3,
.pricing-card.featured p {
    color: white;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-card.featured .pricing-price .currency,
.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-features i.fa-check {
    color: var(--accent-color);
}

.pricing-card.featured .pricing-features i.fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-family: var(--font-sans);
    margin-bottom: 1rem;
}

.pricing-card:not(.featured) .pricing-header h3 {
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-sans);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-features i {
    width: 20px;
    text-align: center;
}

.pricing-features i.fa-check {
    color: var(--primary-color);
}

.pricing-features i.fa-times {
    color: var(--text-light);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.pricing-card.featured .btn-primary:hover {
    background: var(--bg-light);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .story-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse .service-detail-grid {
        direction: ltr;
    }
    
    .services-intro {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .testimonials-slider,
    .team-grid,
    .why-grid,
    .pricing-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-stats {
        flex-direction: column;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Premium Business Homepage Refresh
   ============================================ */
:root {
    --ink: #101418;
    --ink-2: #171f26;
    --platinum: #f7f3ec;
    --champagne: #d9b76e;
    --champagne-dark: #b88d36;
    --teal: #1aa6a6;
    --mist: #eef3f1;
}

body {
    background: #fbfaf7;
}

.section-badge {
    color: var(--champagne-dark);
    background: rgba(217, 183, 110, 0.15);
    border: 1px solid rgba(217, 183, 110, 0.22);
}

.premium-nav {
    background: rgba(14, 18, 22, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.premium-nav.scrolled {
    background: rgba(14, 18, 22, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.premium-nav .nav-logo,
.premium-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
}

.premium-nav .nav-logo span {
    color: white;
}

.premium-nav .nav-logo i {
    color: var(--champagne);
}

.premium-nav .nav-link:hover,
.premium-nav .nav-link.active {
    color: white;
}

.premium-nav .nav-link::after {
    background: var(--champagne);
}

.premium-nav .nav-cta {
    color: var(--ink) !important;
    background: var(--champagne);
    padding: 0.75rem 1.15rem;
}

.premium-nav .nav-toggle span {
    background: white;
}

.premium-hero {
    min-height: 100vh;
    padding: 108px 0 54px;
    color: white;
    background: var(--ink);
    isolation: isolate;
}

.premium-hero::before {
    display: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("../assets/executive-hero.png");
    background-size: cover;
    background-position: center right;
    opacity: 0.82;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.98) 0%, rgba(11, 15, 18, 0.88) 38%, rgba(11, 15, 18, 0.44) 72%, rgba(8, 10, 12, 0.76) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.52), rgba(8, 10, 12, 0.95));
    z-index: -2;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.55fr);
    gap: 3.25rem;
    align-items: center;
    min-height: calc(100vh - 176px);
}

.premium-hero .hero-content {
    max-width: 820px;
}

.premium-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--platinum);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(217, 183, 110, 0.38);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.premium-hero .hero-badge i,
.light-badge {
    color: var(--champagne);
}

.premium-hero .hero-title {
    max-width: 860px;
    color: white;
    font-size: clamp(2.85rem, 5.45vw, 4.95rem);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 1.2rem;
}

.premium-hero .hero-subtitle {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.premium-hero .btn-primary,
.premium-cta .btn-primary {
    background: linear-gradient(135deg, #f1d18a, var(--champagne-dark));
    border-color: rgba(255, 255, 255, 0.14);
    color: #121212;
    box-shadow: 0 20px 40px rgba(217, 183, 110, 0.24);
}

.premium-hero .btn-primary:hover,
.premium-cta .btn-primary:hover {
    background: linear-gradient(135deg, #ffe0a0, #c7973c);
    box-shadow: 0 24px 52px rgba(217, 183, 110, 0.32);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.hero-proof i {
    color: var(--teal);
    margin-right: 0.35rem;
}

.hero-command-panel,
.showcase-board {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(12, 17, 21, 0.76);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px);
    color: white;
    border-radius: 8px;
}

.hero-command-panel {
    align-self: center;
    padding: 1.45rem;
}

.panel-topline,
.board-header,
.score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-topline span,
.score-row span,
.board-header span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
    font-size: 0.86rem;
}

.panel-topline strong {
    color: var(--champagne);
    font-size: 2.35rem;
}

.panel-chart {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 0.65rem;
    height: 160px;
    margin: 1.15rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.panel-chart span {
    display: block;
    min-height: 42px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--teal), var(--champagne));
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.panel-metrics div {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.panel-metrics span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-metrics strong {
    color: white;
    font-size: 1.25rem;
}

.trust-strip {
    background: #11161b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.trust-grid span {
    padding: 1.25rem 1rem;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-snapshot {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(247, 243, 236, 0.94), rgba(238, 243, 241, 0.96)),
        radial-gradient(circle at 14% 20%, rgba(217, 183, 110, 0.18), transparent 32%);
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.founder-photo-card,
.founder-about-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #151b22;
    border: 1px solid rgba(16, 20, 24, 0.12);
    box-shadow: 0 30px 90px rgba(16, 20, 24, 0.18);
}

.founder-photo-card img,
.founder-about-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
    color: white;
    background: rgba(12, 17, 21, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(16px);
}

.photo-caption span {
    display: block;
    color: var(--champagne);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.photo-caption strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.95rem;
}

.founder-story h2 {
    max-width: 780px;
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    margin: 0.9rem 0 1rem;
}

.founder-story > p {
    max-width: 760px;
    font-size: 1.08rem;
}

.founder-infographic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 2rem 0;
}

.info-tile {
    min-height: 126px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(16, 20, 24, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(16, 20, 24, 0.06);
}

.info-tile.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #11161b, #26343d);
}

.info-tile span {
    color: var(--champagne-dark);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-tile strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.25;
}

.info-tile.large strong {
    color: white;
    font-size: 1.3rem;
}

.founder-path {
    display: grid;
    gap: 0.85rem;
}

.founder-path div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    background: rgba(16, 20, 24, 0.04);
    border: 1px solid rgba(16, 20, 24, 0.08);
    border-radius: 8px;
}

.founder-path i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--champagne);
    border-radius: 8px;
}

.founder-path span {
    color: var(--text-primary);
    font-weight: 700;
}

.split-header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
    gap: 2rem;
    align-items: end;
    text-align: left;
}

.split-header .section-subtitle {
    max-width: none;
    margin: 0;
}

.section-title {
    letter-spacing: 0;
}

.premium-feature-grid .premium-card,
.process-step,
.service-card,
.pricing-card,
.why-card,
.value-card,
.mission-card {
    border-radius: 8px;
}

.premium-card {
    border: 1px solid rgba(16, 20, 24, 0.08);
    box-shadow: 0 18px 50px rgba(16, 20, 24, 0.06);
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 183, 110, 0.46);
}

.premium-card::before {
    background: linear-gradient(90deg, var(--champagne), var(--teal));
}

.feature-icon {
    background: linear-gradient(135deg, rgba(217, 183, 110, 0.16), rgba(26, 166, 166, 0.1));
}

.feature-icon i,
.service-features i,
.why-features i {
    color: var(--champagne-dark);
}

.showcase-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #11161b 0%, #172128 56%, #0d1115 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 4rem;
    align-items: center;
}

.showcase-copy h2 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin: 1rem 0;
}

.showcase-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.12rem;
}

.showcase-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.showcase-list span {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.showcase-list i,
.board-header i {
    color: var(--teal);
    margin-right: 0.5rem;
}

.showcase-board {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.07);
}

.board-header {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.score-row {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.score-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.score-row strong {
    color: var(--champagne);
}

.service-card {
    border: 1px solid rgba(16, 20, 24, 0.08);
    box-shadow: 0 18px 55px rgba(16, 20, 24, 0.08);
}

.service-card.featured {
    border: 1px solid rgba(217, 183, 110, 0.5);
    box-shadow: 0 30px 80px rgba(16, 20, 24, 0.16);
}

.service-badge,
.pricing-badge {
    background: var(--champagne);
    color: var(--ink);
}

.service-image {
    background: linear-gradient(135deg, #151b22, #263743);
}

.growth-image {
    background: linear-gradient(135deg, #11161b, #94702a);
}

.brand-image {
    background: linear-gradient(135deg, #1a2930, #168a8a);
}

.process-section {
    padding: 110px 0;
    background: var(--platinum);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 20, 24, 0.08);
    box-shadow: 0 18px 50px rgba(16, 20, 24, 0.06);
}

.process-step span {
    display: block;
    margin-bottom: 2rem;
    color: var(--champagne-dark);
    font-size: 0.86rem;
    font-weight: 900;
}

.process-step h3 {
    font-family: var(--font-sans);
    margin-bottom: 0.75rem;
}

.premium-cta {
    background:
        linear-gradient(135deg, rgba(17, 22, 27, 0.96), rgba(29, 39, 47, 0.94)),
        url("../assets/executive-hero.png") center/cover;
}

.premium-cta .section-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(217, 183, 110, 0.32);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 2rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.contact-item i {
    color: var(--champagne);
}

.page-header {
    background:
        linear-gradient(135deg, rgba(17, 22, 27, 0.94), rgba(28, 38, 46, 0.9)),
        url("../assets/executive-hero.png") center/cover;
    color: white;
    padding: 170px 0 95px;
}

.page-header-content h1,
.page-header-content p {
    color: white;
}

.page-header-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.page-header-actions .btn {
    border-radius: 8px;
}

.page-header-actions .btn-primary {
    background: linear-gradient(135deg, #f1d18a, var(--champagne-dark));
    border-color: rgba(255, 255, 255, 0.14);
    color: #121212;
    box-shadow: 0 20px 40px rgba(217, 183, 110, 0.24);
}

.founder-about-header {
    margin-bottom: 3.5rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.66);
}

.breadcrumb a {
    color: var(--champagne);
}

.pricing-card.featured,
.mission-card,
.cta-section {
    background: linear-gradient(135deg, #11161b, #26343d);
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--ink);
    border-color: white;
}

.footer {
    background: #0d1115;
}

.footer-logo i,
.footer-contact ul li i {
    color: var(--champagne);
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-command-panel {
        max-width: 620px;
        align-self: auto;
    }
}

@media (max-width: 992px) {
    .premium-nav .nav-menu {
        background: rgba(14, 18, 22, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .split-header,
    .showcase-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .founder-photo-card {
        max-width: 520px;
    }

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

@media (max-width: 768px) {
    .premium-hero {
        min-height: auto;
        padding: 118px 0 56px;
    }

    .hero-media {
        background-position: 64% center;
    }

    .premium-hero .hero-title {
        font-size: clamp(3rem, 17vw, 4.4rem);
        line-height: 0.94;
    }

    .premium-hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-proof,
    .cta-contact-info {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-command-panel {
        display: none;
    }

    .process-grid,
    .trust-grid,
    .founder-infographic {
        grid-template-columns: 1fr;
    }

    .founder-snapshot {
        padding: 76px 0;
    }

    .info-tile.large {
        grid-column: auto;
    }

    .trust-grid span {
        padding: 0.9rem 1rem;
    }

    .showcase-section,
    .process-section {
        padding: 76px 0;
    }

    .contact-item {
        justify-content: center;
    }

    .page-header-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .premium-hero .hero-title {
        font-size: 2.8rem;
    }

    .panel-metrics {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
    }
}

/* ============================================
   Portfolio, timeline & hero checklist
   ============================================ */

.panel-checklist {
    display: grid;
    gap: 0.6rem;
    margin: 1.15rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.panel-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
}

.panel-checklist li i {
    color: var(--teal);
    margin-top: 0.2rem;
}

.panel-topline strong i {
    color: var(--champagne);
    font-size: 1.6rem;
}

.trust-grid span i {
    margin-right: 0.4rem;
    color: var(--champagne);
}

.portfolio-section .section-title,
.portfolio-section .section-subtitle {
    color: white;
}

.portfolio-section .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 183, 110, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.portfolio-card.featured-project {
    border-color: rgba(217, 183, 110, 0.5);
}

.portfolio-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.kwaarena-visual {
    background: linear-gradient(135deg, #1aa6a6 0%, #0d5c5c 100%);
}

.school-visual {
    background: linear-gradient(135deg, #2563eb 0%, #16306e 100%);
}

.business-visual {
    background: linear-gradient(135deg, #b88d36 0%, #6e5215 100%);
}

.portfolio-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    background: rgba(12, 17, 21, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.85rem;
    padding: 1.5rem;
}

.portfolio-body h3 {
    color: white;
    font-family: var(--font-sans);
    font-size: 1.25rem;
}

.portfolio-body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.portfolio-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-stack span {
    padding: 0.25rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
}

.portfolio-body .btn {
    align-self: flex-start;
}

.portfolio-body .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.portfolio-body .btn-secondary:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

/* Career timeline (About page) */
.timeline {
    position: relative;
    max-width: 780px;
    margin: 3rem auto 0;
    padding-left: 2.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--champagne), var(--border-color));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    background: var(--bg-white);
    border: 2px solid var(--champagne-dark);
    border-radius: 50%;
    color: var(--champagne-dark);
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-content {
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-left: 0.75rem;
}

.timeline-date {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--champagne-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
}
