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

:root {
    --primary-bg: #FAFBFF;
    --section-grey: #F8F9FA;
    --section-white: #FFFFFF;
    --text-primary: #0D0D0D;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --border-color: #E2E5E8;
    --border-light: #F1F3F4;
    --hover-color: #F0F4FF;
    --accent-primary: #0066CC;
    --accent-secondary: #4299E1;
    --success: #48BB78;
    --warning: #ED8936;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    --blur-backdrop: blur(20px) saturate(180%);
    --webkit-blur-backdrop: -webkit-backdrop-filter: blur(20px) saturate(180%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px; /* Account for fixed header */
}

@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Account for mobile header */
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

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

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--section-white);
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-backdrop);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Button with Badge/Icon */
.btn-badge,
.btn-icon {
    height: 20px;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
}

/* Large Buttons */
.btn-large {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4d94 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(66, 153, 225, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.btn-ghost:hover {
    background: var(--section-white);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* Header */
.header {
    background: rgba(250, 251, 255, 0.8);
    border-bottom: 1px solid rgba(226, 229, 232, 0.3);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.375rem 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.25rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
}

.nav-item {
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

.nav-item:hover::before {
    opacity: 0.1;
}

.nav-item:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-item.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.nav-item.active::before {
    opacity: 0;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 226, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Modern Hero with Background Image */
.hero-with-bg {
    background: linear-gradient(135deg, rgba(250, 251, 255, 0.95) 0%, rgba(235, 237, 238, 0.9) 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 2;
    opacity: 0.6;
    animation: float-gentle 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-element img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

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

.floating-element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Removed floating shapes - cleaner look */

/* Section Layouts */
.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}

.section-grey {
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-white {
    background: var(--section-white);
    position: relative;
}

.section-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(102, 126, 234, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 119, 198, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Modern Two Column Layout */
.modern-layout {
    position: relative;
}

.floating-image-container {
    position: relative;
    perspective: 1000px;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-image 8s ease-in-out infinite;
}

.floating-image:hover {
    transform: rotateY(-2deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Modern Services Grid */
.modern-services {
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-xl);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card:active {
    transform: translateY(-4px) scale(1.01);
}

.service-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-secondary);
}

.service-link:hover::after {
    transform: translateX(4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

/* Modern Service Icons */
.modern-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-icon:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.modern-icon .service-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Why Choose Us */
.why-choose-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .why-choose-us {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Centered Feature */
.centered-feature {
    display: flex;
    justify-content: center;
    text-align: center;
}

.centered-feature .choice-item {
    max-width: 400px;
}

/* Modern Grid Layout */
.modern-grid {
    gap: 2rem;
}

.choice-icon,
.audience-icon,
.quick-win-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.choice-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.choice-item p {
    font-size: 1.1rem;
    color: #0D0D0D;
    opacity: 0.8;
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

/* Modern Process Flow */
.modern-process {
    gap: 4rem;
}

.process-image-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
    border: 2px solid #E2E5E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D0D0D;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0D0D0D;
}

.process-step p {
    color: #0D0D0D;
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Background Section */
.section-cta-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding-top: clamp(8rem, 15vw, 15rem);
    margin-top: 3rem;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.section-cta-bg .final-cta {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

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

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(226, 229, 232, 0.3);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-nav a:hover {
    color: var(--accent-primary);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(226, 229, 232, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header.scrolled {
        padding: 0.375rem 0;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-brand {
        justify-content: center;
    }
    
    .brand-link {
        font-size: 1.25rem;
    }
    
    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.25rem;
        gap: 0.125rem;
    }
    
    .nav-item {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Mobile Floating Elements */
    .floating-element {
        display: none;
    }
    
    .floating-image {
        transform: none;
        animation: none;
    }
    
    .floating-image:hover {
        transform: scale(1.02);
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-icon {
        width: 70px;
        height: 70px;
    }
    
    .modern-icon .service-icon-img {
        width: 35px;
        height: 35px;
    }
    
    .process-image {
        width: 100px;
        height: 100px;
    }
    
    .process-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .choice-icon,
    .audience-icon,
    .quick-win-icon {
        font-size: 2rem;
    }
    
    .section-cta-bg .final-cta {
        padding: 3rem 2rem;
    }
    
    /* About Page Mobile */
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-portrait {
        width: 200px;
        height: 200px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item-inline {
        padding: 0.75rem;
        min-width: 100px;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-mission-card {
        padding: 2rem 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credential-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .modern-difference {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-difference-card {
        padding: 2rem 1.5rem;
    }
    
    .personal-service-highlight {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-nav {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .footer-legal {
        gap: 1rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Accessibility */
.btn:focus,
.nav-item:focus,
.service-link:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Page transition effects */
.hero-content,
.service-card,
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

body.loaded .service-card {
    opacity: 1;
    transform: translateY(0);
}

body.loaded .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

body.loaded .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

body.loaded .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

body.loaded .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Loading animation for interactive elements */
.btn,
.nav-item,
.service-card {
    will-change: transform;
}

/* Glassmorphism effect for header */
.header {
    background: rgba(250, 251, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Subtle depth for cards */
.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
}

/* Organic curves for process icons */
.process-icon {
    background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* About Page Styles */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.pull-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #0D0D0D;
    border-left: 4px solid #E2E5E8;
    padding-left: 2rem;
    margin: 2rem 0;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-size: 4rem;
    color: #E2E5E8;
    position: absolute;
    left: -1rem;
    top: -1rem;
}

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

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

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

.approach-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li::before {
    content: "•";
    color: #0066CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.what-i-do {
    margin: 2rem 0;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.services-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "→";
    color: #0066CC;
    position: absolute;
    left: 0;
}

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

.difference-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.difference-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services Page Styles */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-overview-item {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.service-overview-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services Accordion */
.services-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E2E5E8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card.active {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.service-card.active .service-header {
    background-color: rgba(102, 126, 234, 0.03);
}

.service-icon {
    flex-shrink: 0;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-info {
    flex-grow: 1;
}

.service-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card.active .service-toggle-icon {
    transform: rotate(45deg);
    background: var(--accent-secondary);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.active .service-details {
    max-height: 350px;
}

.service-content {
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(226, 229, 232, 0.3);
}

.service-content h4 {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 0.85rem;
}

.service-timeline {
    background: rgba(102, 126, 234, 0.04);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-primary);
}

.service-timeline h4 {
    margin: 0 0 0.4rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-timeline p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .services-accordion {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 1rem 1.25rem;
    }
    
    .service-content {
        padding: 0.75rem 1.25rem 1rem 1.25rem;
    }
    
    .service-icon img {
        width: 36px;
        height: 36px;
    }
    
    .service-toggle-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #0066CC;
    position: absolute;
    left: 0;
}

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

.package-card {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.package-subtitle {
    color: #0D0D0D;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.price-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E5E8;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item h4 {
    color: #0D0D0D;
    margin-bottom: 0.5rem;
}

.price-item ul {
    list-style: none;
    padding: 0;
}

.price-item li {
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.price-item li::before {
    content: "•";
    color: #0066CC;
    position: absolute;
    left: 0;
}

.package-pricing {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-cta {
    text-align: center;
    margin-top: auto;
    padding: 2rem;
}

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

.addon-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.addon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.addon-item h4 {
    margin-bottom: 0.5rem;
    color: #0D0D0D;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0066CC;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-type {
    color: #0066CC;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-details {
    margin: 1.5rem 0;
}

.challenge-result {
    margin-bottom: 1rem;
}

.challenge-result h4 {
    font-size: 1rem;
    color: #0D0D0D;
    margin-bottom: 0.25rem;
}

.challenge-result p {
    font-size: 0.9rem;
    color: #0D0D0D;
    opacity: 0.8;
}

.client-quote {
    font-style: italic;
    color: #0D0D0D;
    border-left: 3px solid #E2E5E8;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.client-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #0066CC;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.podcast-series {
    margin: 1.5rem 0;
}

.podcast-series h4 {
    margin-bottom: 0.5rem;
    color: #0D0D0D;
}

.podcast-series ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.podcast-series li {
    font-size: 0.9rem;
    color: #0D0D0D;
    opacity: 0.8;
}

.coming-soon {
    background: #F0F4FF;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

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

.testimonial {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    font-style: italic;
    color: #0D0D0D;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 3rem;
    color: #E2E5E8;
    position: absolute;
    top: -1rem;
    left: 1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
    color: #0066CC;
    font-style: normal;
}

/* Contact Page Styles */
.contact-hero {
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

/* Contact page specific section spacing */
.contact-hero + .section {
    padding-top: clamp(6rem, 12vw, 12rem);
}

/* Move the CTA button down by 3px */
.modern-contact-card .btn {
    margin-top: 3px;
}

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

/* Modern Contact Options */
.modern-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.modern-contact-card {
    background: var(--section-white);
    padding: 4.5rem 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin-top: 2rem;
}

.modern-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Global Service Visual */
.global-service-visual {
    margin-top: 3rem;
    text-align: center;
}

.location-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--section-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

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

/* Modern Contact Form */
.modern-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--section-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.modern-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--section-grey);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-checkbox:hover {
    background: var(--hover-color);
}

.modern-checkbox input[type="checkbox"] {
    display: none;
}

.modern-checkbox .checkmark {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
    opacity: 0.3;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.modern-checkbox input[type="checkbox"]:checked ~ .checkbox-text {
    color: var(--accent-primary);
    font-weight: 600;
}

.modern-checkbox:has(input[type="checkbox"]:checked) {
    background: var(--hover-color);
    border: 2px solid var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Fallback for browsers that don't support :has() */
.modern-checkbox.checked {
    background: var(--hover-color);
    border: 2px solid var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.checkbox-text {
    font-weight: 500;
}

/* Modern Process Steps */
.modern-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-process-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.modern-process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.modern-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-icon {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    display: block;
}

/* Modern Contact FAQ */
.modern-contact-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.email-info {
    margin: 1rem 0;
}

.email-info a {
    color: #0066CC;
    text-decoration: none;
}

.email-info a:hover {
    text-decoration: underline;
}

.additional-info {
    font-size: 0.9rem;
    color: #0D0D0D;
    opacity: 0.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0D0D0D;
}

.required {
    color: #FF4444;
}

.optional {
    color: #0D0D0D;
    opacity: 0.6;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E5E8;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: #F0F4FF;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.9rem;
    color: #0D0D0D;
    opacity: 0.7;
    margin-top: 1rem;
}

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

.process-step-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.process-step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
    border: 2px solid #E2E5E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0D0D0D;
    margin: 0 auto 1rem;
}

.location-info {
    text-align: center;
    margin-top: 2rem;
    color: #0D0D0D;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.faq-item p {
    color: #0D0D0D;
    opacity: 0.8;
}

/* Success Metrics */
.success-metrics {
    margin: 3rem 0;
    text-align: center;
}

.metric-item h3 {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--section-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-item {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audience-item h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.audience-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quick Wins Grid */
.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-win-item {
    text-align: center;
    padding: 2rem;
    background: var(--section-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.quick-win-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quick-win-item h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.quick-win-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Simple FAQ */
.faq-simple {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-simple .faq-item {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-simple .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-simple .faq-item h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-simple .faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .platform-logos {
        gap: 1rem;
    }
    
    .logo-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .audience-grid,
    .quick-wins-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-item,
    .quick-win-item {
        padding: 1.5rem;
    }
    
    .faq-simple .faq-item {
        padding: 1.5rem;
    }
    
    .audio-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .track-record {
        padding: 1.5rem;
    }
    
    .credentials {
        padding: 1.5rem;
    }
    
    .results-timeline,
    .performance-metrics {
        padding: 1rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 119, 198, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
}

.about-portrait-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-portrait {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    border: 4px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.portrait-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-item-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

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

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

.story-image-container {
    position: relative;
}

.story-illustration {
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modern-quote {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Modern Mission Cards */
.modern-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modern-mission-card {
    background: var(--section-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.modern-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.modern-approach {
    text-align: left;
    margin-top: 1rem;
}

.modern-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.modern-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Modern Credentials */
.modern-credentials {
    margin-top: 2rem;
}

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

.credential-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--section-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.credential-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.credential-content h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.credential-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Modern Difference Cards */
.modern-difference {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modern-difference-card {
    background: var(--section-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.modern-difference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.difference-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Personal Service Highlight */
.modern-personal-service {
    max-width: 800px;
    margin: 0 auto;
}

.personal-service-highlight {
    background: var(--section-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.credentials {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--section-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.credentials h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.credentials-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.6;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list li strong {
    color: var(--text-primary);
}

.personal-service-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Services Page Specific Styles */
.services-hero {
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

/* Modern Services Overview */
.modern-services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-service-card {
    background: var(--section-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.modern-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.modern-toggle {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modern-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Modern Detail Sections */
.modern-detail-section {
    background: var(--section-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.modern-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modern-features li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.modern-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.modern-timeline {
    background: var(--section-grey);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-primary);
    margin-top: 2rem;
}

/* Modern Packages */
.modern-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.modern-package-card {
    background: var(--section-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-package {
    border: 2px solid var(--accent-primary);
    transform: scale(1.02);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: var(--radius-md);
}

.package-header {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-price-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.modern-price-item:last-child {
    border-bottom: none;
}

.modern-price-item h4 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.modern-price-item ul {
    list-style: none;
    padding: 0;
}

.modern-price-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.modern-price-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Modern Add-ons */
.modern-addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-addon-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.modern-addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.addon-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Modern FAQ */
.modern-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-faq-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-faq-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.results-timeline,
.performance-metrics {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--section-grey);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-primary);
}

.results-timeline h4,
.performance-metrics h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.results-timeline p,
.performance-metrics p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Page Specific Styles */
.portfolio-hero {
    background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 119, 198, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.stats-showcase {
    margin-top: 3rem;
    position: relative;
}

.modern-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.modern-stat-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.modern-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modern-stat-card p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Modern Portfolio Cards */
.modern-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.modern-portfolio-card {
    background: var(--section-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.modern-portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-project {
    border: 2px solid var(--accent-primary);
    transform: scale(1.02);
}

.portfolio-header {
    padding: 2rem 2rem 1rem;
}

.project-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modern-project-details {
    padding: 0 2rem 1rem;
}

.modern-challenge,
.modern-result {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--section-grey);
    border-radius: var(--radius-md);
}

.challenge-icon,
.result-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.challenge-content h4,
.result-content h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.challenge-content p,
.result-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.modern-testimonial {
    margin: 1.5rem 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
    position: relative;
}

.modern-testimonial .quote-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modern-testimonial cite {
    font-style: normal;
    color: var(--accent-primary);
    font-weight: 600;
}

.modern-series-list {
    padding: 0 2rem 1rem;
}

.series-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.series-tag {
    background: var(--section-grey);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.project-links {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modern Audio Comparison */
.modern-before-after {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-intro {
    margin-bottom: 2rem;
}

.modern-audio-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-audio-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audio-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.before-icon {
    color: var(--warning);
}

.after-icon {
    color: var(--success);
}

.modern-audio-placeholder {
    background: var(--section-grey);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.modern-audio-placeholder:hover {
    background: var(--hover-color);
    border-color: var(--accent-primary);
}

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

/* Modern Testimonials */
.modern-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-testimonial-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--warning);
}

.modern-testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.modern-testimonial-card cite {
    font-style: normal;
    color: var(--accent-primary);
    font-weight: 600;
}

.track-record {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
    background: var(--section-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.track-record h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.track-record p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.key-feature {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--section-grey);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
}

.key-feature h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.key-feature p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Before & After Audio Comparison */
.before-after {
    max-width: 1000px;
    margin: 0 auto;
}

.audio-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.audio-sample {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.audio-sample h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.audio-player p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.audio-placeholder {
    background: var(--section-grey);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

.comparison-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
} 

/* Image Styles */
.brand-logo {
    height: 40px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.section-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-badge {
    height: 24px;
    width: auto;
    margin-right: 0.5rem;
}

.cta-icon {
    height: 20px;
    width: auto;
    margin-right: 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: var(--radius-sm);
}

.story-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-overview-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.portfolio-stats-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.success-launch-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-bg-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    opacity: 0.8;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .brand-logo {
        height: 32px;
    }
    
    .hero-image {
        margin-bottom: 1.5rem;
    }
    
    .section-image,
    .story-image,
    .about-image,
    .portfolio-stats-image,
    .success-launch-image,
    .contact-bg-image {
        margin-bottom: 1.5rem;
    }
    
    .service-overview-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-badge {
        height: 20px;
    }
    
    .cta-icon {
        height: 18px;
    }
    
    .footer-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 28px;
    }
    
    .hero-image {
        margin-bottom: 1rem;
    }
    
    .section-image,
    .story-image,
    .about-image,
    .portfolio-stats-image,
    .success-launch-image,
    .contact-bg-image {
        margin-bottom: 1rem;
    }
    
    .service-overview-icon {
        width: 36px;
        height: 36px;
    }
    
    .cta-badge {
        height: 18px;
        margin-right: 0.375rem;
    }
    
    .cta-icon {
        height: 16px;
        margin-right: 0.375rem;
    }
    
    .footer-logo {
        height: 24px;
        margin-right: 0.375rem;
    }
} 

/* Portfolio Podcast Showcase */
.podcast-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.podcast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.podcast-cover {
    margin-bottom: 1.5rem;
}

.podcast-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.podcast-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.podcast-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.podcast-links .btn {
    margin: 0 0.5rem;
}

/* Testimonials Showcase */
.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--section-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-content {
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .podcast-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .podcast-image {
        width: 150px;
        height: 150px;
    }
    
    .testimonials-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -0.5rem;
    }
} 

/* Sitemap Styles */
.sitemap-content {
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--section-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sitemap-list a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--accent-secondary);
}

.sitemap-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sitemap-section h2 {
        font-size: 1.3rem;
    }
    
    .sitemap-list li {
        padding: 0.75rem;
    }
    
    .sitemap-list a {
        font-size: 1rem;
    }
}