/* Font Faces */
@font-face {
    font-family: 'Neulis Sans Medium';
    src: url('assets/fonts/Neulis_Sans_Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('assets/fonts/NeulisAlt-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('assets/fonts/NeulisAlt-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('assets/fonts/NeulisAlt-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('assets/fonts/InstrumentSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Sans Medium';
    src: url('assets/fonts/InstrumentSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* CSS Variables */
:root {
    --main-text: #1e4ca6;
    --background: #ffffff;
    --accent-1: #6d9eff;
    --accent-2: #6d9eff;
    --accent-3: #f7931e;
    --cta-green: #97dd47;
    --white: #ffffff;
    --light-gray: #eff2f8;
    --border-gray: #e0dfdc;
    --dark-gray: #666666;
}


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

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Instrument Sans', Arial, sans-serif;
    background-color: var(--background);
    color: var(--main-text);
    line-height: 1.6;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Special Offer Banner */
.special-offer-banner {
    background-color: #d1e1ff;
    color: var(--main-text);
    padding: 12px 15px;
    text-align: center;
    position: relative;
    z-index: 1000;
    min-height: 42px;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.special-offer-banner .banner-text {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--main-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 1200px;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0;
    box-sizing: border-box;
    pointer-events: none;
}

.special-offer-banner .banner-text.active {
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
    pointer-events: auto;
}

.special-offer-banner .banner-text .green-accent {
    color: #22c65f;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: bold;
    color: var(--main-text);
}

h1 {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p {
    font-family: 'Instrument Sans', Arial, sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--main-text);
    white-space: nowrap;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--main-text);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: normal;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a:hover {
    color: var(--accent-1);
}

/* Dropdown Menu */
.nav-menu li.has-dropdown > a::after {
    content: '↓';
    font-size: 0.9rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    transform: rotate(0deg);
}

.nav-menu li.has-dropdown:hover > a::after {
    transform: rotate(-180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown li a {
    padding: 12px 20px;
    display: block;
    color: var(--main-text);
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.nav-dropdown li a:hover {
    background-color: var(--light-gray);
    color: var(--accent-1);
}

.nav-cta {
    background: var(--accent-1) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border: 1px solid var(--accent-1) !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--accent-1) !important;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Separators */
.banner-section::after,
.why-optimize-section::after,
.turnkey-section::after,
.internet-presence-section::after,
.services-section::after,
.how-it-works-section::after,
.work-showcase-section::after,
.about-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border-gray);
    margin: 40px 0;
}

/* Adjust separator spacing under the profile packages services section on profile optimization page */
body.profile-optimization-page .services-section.profile-packages-section::after {
    margin: 20px 0 40px 0 !important;
}

/* Profile Header */
.profile-header {
    background: var(--white);
    margin-bottom: 30px;
    overflow: visible;
}

/* Banner Section */
.banner-section {
    margin-bottom: 30px;
}

.text-banner {
    background: var(--white);
    padding: 40px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.banner-text-1,
.banner-text-2,
.banner-text-3 {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 100;
    text-align: center;
    letter-spacing: -0.08em;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.banner-text-1:hover,
.banner-text-2:hover,
.banner-text-3:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.banner-text-1 {
    color: #97baff;
}

.banner-stand {
    color: #97baff;
}

.banner-out {
    color: #ff49c1;
}

.banner-text-2 {
    color: #97baff;
}

.banner-highlight {
    color: #22c65f;
}

.banner-text-3 {
    color: #97baff;
}

.banner-get {
    color: #97baff;
}

.banner-more-clients {
    color: #3378ff;
}

/* New Hero Layout */
.hero-content {
    display: grid;
    grid-template-columns: minmax(510px, 1fr) 1fr;
    gap: 80px;
    padding: 60px 50px 70px;
    align-items: center;
    min-height: 750px;
    overflow: visible;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-weight: 500;
    color: var(--main-text);
    letter-spacing: -0.088em;
    line-height: 0.8;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-line-1 {
    font-size: 6.25rem;
}

.title-line-2 {
    font-size: 6.25rem;
    margin-left: 0;
    margin-bottom: -0.05em;
    position: relative;
    display: inline-block;
}

.animated-text {
    position: relative;
    display: inline-block;
    height: 1em;
    overflow: visible;
    min-width: 400px;
    width: 400px;
    margin-bottom: -0.1em;
    z-index: 10;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
    white-space: nowrap;
    width: 100%;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: 1;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.text-digital {
    color: var(--main-text);
}

.text-web {
    color: #22c65f;
}

.text-resume {
    color: var(--accent-3);
}

.text-profile {
    color: var(--accent-1);
}

.title-line-3 {
    font-size: 6.5rem;
}

.title-byline {
    font-size: 2.34rem;
    font-weight: normal;
    color: var(--main-text);
    margin-top: 10px;
    margin-left: 0;
    display: block;
}

.hero-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    min-width: 400px !important;
    width: auto !important;
}

    .hero-profile .profile-picture {
    position: relative;
    top: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
    min-width: 400px !important;
    min-height: 400px !important;
}

/* Mobile hero profile picture centering */
@media (max-width: 768px) {
    .hero-profile .profile-picture {
        min-width: auto !important;
        min-height: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 4px solid var(--white);
}

.hero-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 76, 166, 0.25);
}


.hero-description {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--main-text);
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-rating {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-3);
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 1.4s both;
    opacity: 0.9;
}

.hero-profile .profile-headline {
    font-size: 1.3rem;
    font-weight: normal;
    color: var(--main-text);
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left;
    max-width: 400px;
}

.profile-headline {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--main-text);
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 600px;
}

.hero-profile .profile-location {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: left;
}

.profile-location {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.hero-text .profile-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.hero-profile .profile-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.profile-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: normal;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--main-text);
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--main-text);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--main-text);
}

.btn-secondary {
    background: transparent;
    color: var(--main-text);
}

.btn-secondary:hover {
    background: var(--main-text);
    color: var(--white);
}

/* Home services CTA hover accents */
.home-services .services-grid .service-card:nth-child(1) .btn-secondary:hover {
    background: #ff49c1; /* pink from 'out.' */
    border-color: #ff49c1;
}

.home-services .services-grid .service-card:nth-child(2) .btn-secondary:hover {
    background: #22c65f; /* green from 'dream role' */
    border-color: #22c65f;
}

.home-services .services-grid .service-card:nth-child(3) .btn-secondary:hover {
    background: #3378ff; /* blue from 'more clients' */
    border-color: #3378ff;
}

.home-services .services-grid .service-card:nth-child(4) .btn-secondary:hover {
    background: #f7931e; /* orange accent */
    border-color: #f7931e;
}

/* Section Cards */
.section-card {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.section-card:hover {
    transform: translateY(-2px);
}

/* Disable hover transform on CTA sections to prevent separator overlap */
.services-section .section-card:has(.services-cta):hover,
.tools-cta-section .section-card:hover {
    transform: none;
}

.section-title {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--main-text);
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Why Optimize Section */
.why-optimize-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-optimize-layout.single-column {
    grid-template-columns: 1fr;
}

/* What I Craft Section */
.craft-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.craft-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--main-text);
}

.craft-title {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--main-text);
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    line-height: 1.2;
}

.craft-text p {
    margin: 0;
}

.craft-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .craft-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .craft-title {
        font-size: 2rem;
    }
    
    .craft-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        margin: 0 auto;
    }
}

.craft-layout {
    align-items: start !important;
}

.craft-icons {
    display: grid !important;
    /* Force exactly 2 icons per row */
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 20px !important;
    justify-content: center;
    align-items: start;
    max-width: 500px;
    margin: 0 !important;
    padding: 0 !important;
}

.craft-icon-item {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 20px 22px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    animation: craftFloat 4s ease-in-out infinite;
}

.craft-icon-item:nth-child(2) {
    animation-delay: 0.4s;
}

.craft-icon-item:nth-child(3) {
    animation-delay: 0.8s;
}

.craft-icon-item:nth-child(4) {
    animation-delay: 1.2s;
}

.craft-icon-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 8px;
}

.craft-icon-label {
    font-size: 0.9rem;
    font-family: 'Instrument Sans', Arial, sans-serif;
    color: var(--main-text);
}

@keyframes craftFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }
}

.why-optimize-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-optimize-content p strong {
    color: var(--main-text);
    font-weight: 600;
}

/* Why Optimize Reason Cards */
.why-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-reason-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.why-reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-1);
    color: white;
    border-radius: 50%;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-reason-card h4 {
    font-size: 1.05rem;
    color: var(--main-text);
    margin-bottom: 8px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.why-reason-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
}

.why-optimize-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-mockup-link {
    text-decoration: none;
    display: block;
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.linkedin-mockup-link:hover {
    transform: translateY(-2px);
}

.linkedin-mockup {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.mockup-header {
    position: relative;
}

.mockup-banner-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 1;
    object-fit: cover;
    display: block;
}

.mockup-profile-section {
    padding: 20px 20px 24px;
    position: relative;
    margin-top: -40px;
}

.mockup-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    margin-bottom: 15px;
}

.mockup-name {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-text);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.mockup-headline {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--main-text);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.mockup-location {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
}

.mockup-service {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid var(--border-gray);
}

.service-icon {
    font-size: 1rem;
}

.mockup-service-logo {
    width: 36px;
    height: auto;
}

.service-text {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--main-text);
    font-weight: 500;
}

/* Turnkey Solution Section */
.turnkey-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.services-list {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-1);
}

.services-list p {
    font-size: calc(1.1rem - 3.5px);
}

.turnkey-text {
    padding-top: 20px;
}

.turnkey-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.turnkey-content p strong {
    color: var(--main-text);
    font-weight: 600;
}

.view-work-link {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 10px;
}

.view-work-link:hover {
    color: var(--main-text);
    text-decoration: underline;
}

.services-list {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-1);
}

.services-list p {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--main-text);
}

.services-list p:last-child {
    margin-bottom: 0;
}

/* Internet Presence Section */
.internet-presence-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.internet-presence-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.internet-graphic {
    width: 100%;
    max-width: 470px;
}

.internet-graphic svg {
    width: 100%;
    height: auto;
}

.internet-presence-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.internet-presence-content p strong {
    color: var(--main-text);
    font-weight: 600;
}

/* How it Works Section */
.how-it-works-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--main-text);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.process-card {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.process-card:hover {
    transform: translateY(-2px);
}

.process-card:hover .step-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

.process-header {
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.4rem;
    color: var(--main-text);
    margin: 0;
}

.process-steps {
    margin-bottom: 25px;
    position: relative;
    flex-grow: 1;
}


.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: normal;
    font-size: 1.1rem;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.step p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-top: 8px;
}

.step em {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.process-delivery {
    color: var(--main-text);
    text-align: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.1rem;
}

/* Hero Title Single Line */
.hero-title-single {
    font-size: 4.5rem;
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-weight: 500;
    color: var(--main-text);
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Hero Icon Section for Profile Optimization Page */
.hero-icon-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: -40px;
}

.hero-icon {
    width: 360px;
    height: 360px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: scale(1.02);
}

/* Before/After Slider Section */
.before-after-section {
    margin-bottom: 30px;
}

.before-after-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border-gray);
    margin: 40px 0;
}

/* Before/After Slider */
.slider-instruction {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

.before-after-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
    user-select: none;
}

.before-image-wrapper,
.after-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.before-image-wrapper {
    position: relative;
}

.after-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.comparison-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.after-image-wrapper .comparison-image {
    width: auto;
    height: 100%;
    max-width: none;
}

.image-label {
    position: absolute;
    top: 15px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    pointer-events: none;
}

.before-label {
    right: 15px;
}

.after-label {
    left: 15px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    width: 2px;
    height: 20px;
    background: var(--accent-1);
}

.slider-arrow {
    font-size: 1.5rem;
    color: var(--accent-1);
    font-weight: bold;
    position: absolute;
}

.slider-arrow:first-child {
    left: 12px;
}

.slider-arrow:last-child {
    right: 12px;
}

/* New Step Cards Layout */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* LinkedIn page - 3 columns for 3 steps */
.linkedin-how-it-works .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Website development page - 4 columns for 4 steps */
.web-how-it-works .process-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 3-step process grid override */
.web-how-it-works .process-steps-grid.process-steps-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.step-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.step-card-link:hover {
    border-color: var(--main-text);
}

.step-card-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.step-icon {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    opacity: 0.7;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    color: var(--main-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 10px 0 0 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.step-bonus {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brewbrand-logo-small {
    max-width: 120px;
    height: auto;
    margin-top: 5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-bonus a:hover .brewbrand-logo-small {
    opacity: 0.8;
    transform: scale(1.05);
}

/* BrewBrand Bonus Banner */
.brewbrand-bonus-banner {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-1);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* BrewBrand Hero Banner (Fees page) */
.brewbrand-hero-banner {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f0fe 100%);
    border-radius: 12px;
    padding: 24px 30px;
    margin: 0 auto 30px;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(22, 58, 127, 0.1);
}

.brewbrand-hero-text {
    font-size: 1rem;
    color: var(--main-text);
    margin: 0;
}

.brewbrand-hero-text strong {
    color: var(--cta-green);
}

.brewbrand-hero-logo {
    max-width: 140px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brewbrand-hero-banner a:hover .brewbrand-hero-logo {
    opacity: 0.8;
    transform: scale(1.05);
}

.brewbrand-hero-tagline {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
    font-style: italic;
}

.brewbrand-bonus-banner .bonus-text {
    font-size: 1.1rem;
    color: var(--main-text);
    margin: 0;
    font-weight: 500;
}

.brewbrand-bonus-banner .bonus-subtext {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    font-style: italic;
}

.brewbrand-logo-medium {
    max-width: 150px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brewbrand-bonus-banner a:hover .brewbrand-logo-medium {
    opacity: 0.8;
    transform: scale(1.05);
}

.process-delivery-banner {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--main-text);
    border-left: 4px solid var(--accent-1);
}

.process-delivery-banner .accent-time {
    color: #22c65f;
    font-weight: bold;
}

/* Desktop only: align delivery text to the right */
@media (min-width: 769px) {
    .process-delivery {
        text-align: right;
    }
    
    /* Desktop banner height adjustment */
    .special-offer-banner {
        padding: 15px 20px;
    }
}

.accent-time {
    color: #22c65f;
    font-weight: bold;
}

/* About Section */
.about-simple {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-profile-photo {
    flex-shrink: 0;
}

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 4px solid var(--white);
}

.about-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 76, 166, 0.25);
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-content p strong {
    color: var(--main-text);
    font-weight: 600;
}

/* Work Showcase Section */
.work-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--main-text);
}

.work-gallery-container {
    position: relative;
    overflow: hidden;
}

.work-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.work-gallery::-webkit-scrollbar {
    height: 8px;
}

.work-gallery::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.work-gallery::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 4px;
}

.work-item {
    flex: 0 0 calc(60% - 18px);
    scroll-snap-align: start;
}

/* Mobile-only interactive styles */
@media (max-width: 768px) {
    .work-item {
        cursor: pointer;
        transition: transform 0.2s ease;
        /* Prevent touch events from interfering with scroll */
        touch-action: pan-x;
    }
    
    .work-item:active {
        transform: translateY(-2px);
    }
}

.work-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.2s ease;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.image-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.modal-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}



/* FAQ Section */
.faq-container {
    width: 100%;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Instrument Sans', Arial, sans-serif !important;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question span:first-child {
    font-family: 'Instrument Sans', Arial, sans-serif !important;
    font-weight: 600;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-1);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--main-text);
}

/* Services Section */
.services-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--main-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Profile Optimization Page ONLY - Compact 4-column layout */
.profile-packages-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile-packages-section .service-card {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
}

.profile-packages-section .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-packages-section .service-features {
    font-size: 0.95rem;
    flex-grow: 1;
}

.profile-packages-section .service-pricing {
    margin-top: auto;
}

/* Service Card CTA Button */
.service-card-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* Website Development Page - Same 4-column layout */
.web-packages-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.web-packages-section .service-card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}

.web-packages-section .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.web-packages-section .service-features {
    flex-grow: 1;
}

.web-packages-section .service-pricing {
    margin-top: auto;
}

.services-section#services .service-title {
    font-size: 1.1rem;
    line-height: 1.2;
}

.services-section#services .service-features li {
    padding: 3px 0;
    font-size: 0.95rem;
}

.services-section#services .service-price {
    font-size: 1.8rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-card.featured {
    border-color: var(--main-text);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--main-text);
    margin: 0;
}

.service-title-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px;
}

.service-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--white);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.service-badge.lite {
    background: var(--accent-1);
}

.service-badge.lite-plus {
    background: linear-gradient(135deg, var(--accent-1), var(--cta-green));
}

.service-badge.standard {
    background: var(--cta-green);
}

.service-badge.pro {
    background: var(--main-text);
}

.service-badge.max {
    background: #1e4ca6;
}

.service-badge.business {
    background: #1e4ca6;
}

.service-badge.branding {
    background: #f7931e;
}

.service-badge.web {
    background: #f7931e;
}

.service-badge.premium {
    background: #1e4ca6;
}

.service-badge.professional {
    background: var(--cta-green);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h4 {
    color: var(--main-text);
    margin-bottom: 12px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features li {
    padding: 4px 0;
    color: var(--main-text);
    font-size: 1.1rem;
}

.service-pricing {
    margin-top: 16px;
}

.service-cta-link {
    margin-top: auto;
    padding-top: 16px;
    text-align: right;
}

.service-cta-link a {
    text-decoration: none;
    color: var(--main-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-cta-link a:hover {
    color: var(--accent-1);
}

.service-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--main-text);
    margin-bottom: 8px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.service-price.monthly-price {
    font-size: 1.6rem;
}


.service-note {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    font-style: italic;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--main-text);
    opacity: 1;
    margin-right: 10px;
}

/* Only apply green to prices that have strikethrough (special pricing) */
.service-price:has(.strikethrough) {
    color: var(--cta-green);
}

.service-price .strikethrough {
    color: var(--main-text);
}

/* Brewbrand Special Offer Card */
.service-card.brewbrand-card {
    background: linear-gradient(to bottom, #ffffff 0%, #f2e7dd 100%);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-card.brewbrand-card .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.brewbrand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brewbrand-logo-container a {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.brewbrand-logo-container a:hover {
    opacity: 0.8;
}

.brewbrand-logo {
    max-width: 200px;
    height: auto;
    width: 100%;
    display: block;
}

.brewbrand-tagline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 20px 0;
    padding: 0 10px;
}

.brewbrand-text {
    font-family: 'Instrument Sans', Arial, sans-serif;
    color: var(--main-text);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

.services-cta {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.services-cta h3 {
    font-size: 1.55rem;
}

.services-cta-heading {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.services-cta .btn-primary {
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-block;
}

/* Profile optimization page specific spacing - center content vertically in section */
.profile-optimization-page .services-cta {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    border-top: none !important;
}

.profile-optimization-page .services-cta p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 0;
}

.profile-optimization-page .services-cta .btn-primary {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-top: 0;
}

/* Section Separator Line */
.section-separator {
    width: 100%;
    height: 1px;
    background-color: var(--border-gray);
    margin: 40px 0;
}

/* Fees page specific separator spacing */
.fees-header ~ .container .section-separator {
    margin: 30px 0;
}

/* ================================================
   Executive teaser block on Profile Optimization page
   ================================================ */

body.profile-optimization-page .exec-package-section {
    background: #0f1f38;
    margin: 12px 0 0;
    padding: 24px 24px 14px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

body.profile-optimization-page .exec-audience-section {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

body.profile-optimization-page .exec-package-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: stretch;
}

body.profile-optimization-page .exec-package-copy {
    flex: 1.3 1 360px;
    max-width: 620px;
    text-align: left;
}

body.profile-optimization-page .exec-package-eyebrow {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8ab4ff;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(138, 180, 255, 0.4);
    display: inline-block;
    margin-bottom: 16px;
}

body.profile-optimization-page .exec-section-title {
    color: #ffffff;
    margin-bottom: 16px;
    text-align: left;
}

body.profile-optimization-page .exec-package-subcopy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

body.profile-optimization-page .exec-btn-inline {
    background: #6d9eff;
    color: #0a1628;
    border-color: #6d9eff;
}

body.profile-optimization-page .exec-btn-inline:hover {
    background: #8ab4ff;
    border-color: #8ab4ff;
}

body.profile-optimization-page .exec-package-card {
    flex: 0.9 1 260px;
    background: #111d32;
    border-radius: 16px;
    padding: 18px 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

body.profile-optimization-page .exec-package-card-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

body.profile-optimization-page .exec-package-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

body.profile-optimization-page .exec-package-list li {
    font-size: 1.02rem;
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

body.profile-optimization-page .exec-package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #6d9eff;
    font-weight: bold;
}

body.profile-optimization-page .exec-package-brewbrand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.profile-optimization-page .exec-brewbrand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body.profile-optimization-page .exec-brewbrand-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.7);
}

body.profile-optimization-page .exec-brewbrand-text {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
}

body.profile-optimization-page .exec-brewbrand-logo-wrapper {
    display: flex;
    align-items: center;
}

body.profile-optimization-page .exec-brewbrand-logo-inline {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    body.profile-optimization-page .exec-package-section {
        padding: 20px 16px 12px;
    }

    body.profile-optimization-page .exec-package-layout {
        flex-direction: column;
    }

    body.profile-optimization-page .exec-package-card {
        margin-top: 12px;
    }

    body.profile-optimization-page .exec-package-copy,
    body.profile-optimization-page .exec-package-card {
        max-width: 100%;
    }

    body.profile-optimization-page .exec-package-eyebrow {
        border-radius: 16px;
        padding: 6px 14px;
    }
}

/* Fees & Offers Page Styles */
.fees-header {
    padding: 120px 50px 100px;
    text-align: center;
}

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

.hero-title-simple {
    font-size: 4.5rem;
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-weight: 500;
    color: var(--main-text);
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: center;
}

.hero-content-simple .hero-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--main-text);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fees-header .hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

/* Bundle Cards Section */
.bundles-section {
    padding: 60px 0 40px;
}

/* Fees page specific - tighter bottom spacing */
.fees-header ~ .container .bundles-section {
    padding: 60px 0 0px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.bundles-grid .service-card {
    display: flex;
    flex-direction: column;
}

.bundles-grid .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bundles-grid .service-features {
    flex-grow: 1;
}

.bundles-grid .service-pricing {
    margin-top: auto;
}

.service-badge.bundle {
    background: var(--cta-green);
    color: white;
}

/* Bundle prices green on fees page */
.bundles-grid .service-price {
    color: var(--cta-green);
}

/* All Services Grid */
.all-services-section {
    padding: 20px 0 20px;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.all-services-grid .service-card {
    display: flex;
    flex-direction: column;
}

.all-services-grid .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.all-services-grid .service-features {
    flex-grow: 1;
}

.all-services-grid .service-pricing {
    margin-top: auto;
}

/* BrewBrand Card on Fees Page */
.brewbrand-card {
    background: linear-gradient(to bottom, #ffffff 0%, #f2e7dd 100%);
    border: 2px solid #e6d5c3;
}

.brewbrand-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
}

.brewbrand-logo-large {
    width: 180px;
    height: auto;
}

.brewbrand-tagline {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.brewbrand-offer {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f7931e;
    width: 100%;
}

.brewbrand-offer-text {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1.05rem;
    color: var(--main-text);
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    padding: 20px 0 40px;
}

/* Testimonials Section */
.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 4px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    flex: 0 0 500px;
    scroll-snap-align: start;
    min-height: 200px;
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100vw - 60px);
        min-width: 280px;
        max-width: 500px;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 calc(100vw - 50px);
        padding: 20px 15px;
    }
}

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

/* New Masonry Testimonials */
.testimonials-masonry {
    column-count: 3;
    column-gap: 20px;
}

.testimonial-card-new {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
    break-inside: avoid;
    margin-bottom: 20px;
}

.testimonial-card-new:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-header-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-pic-new {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-1);
    flex-shrink: 0;
}

.testimonial-author-info-new {
    flex: 1;
}

.testimonial-author-info-new h4 {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--main-text);
    margin: 0 0 2px 0;
}

.testimonial-position-new {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.testimonial-text-new {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text-new.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read-more-btn-new {
    background: none;
    border: none;
    color: var(--accent-1);
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    display: none;
}

.read-more-btn-new:hover {
    text-decoration: underline;
}

.testimonial-date-new {
    font-size: 0.8rem;
    color: #999;
    display: block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--main-text);
    margin: 0 0 2px 0;
}

.testimonial-position {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.testimonial-stars-new {
    color: #f5b942;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-text.expandable {
    max-height: 5.8em; /* Approximately 4 lines */
    overflow: hidden;
    position: relative;
}

.testimonial-text.expandable::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, #fff);
}

.testimonial-text.expandable.expanded {
    max-height: none;
}

.testimonial-text.expandable.expanded::after {
    display: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-1);
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    display: block;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #999;
    display: block;
}

@media (max-width: 992px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .testimonials-masonry {
        column-count: 1;
    }
    
    .testimonial-card-new {
        padding: 20px;
    }
    
    .testimonial-hidden-mobile {
        display: none;
    }
    
    .testimonials-masonry.show-all .testimonial-hidden-mobile {
        display: block;
    }
}

.testimonials-load-more {
    display: none;
    width: 100%;
    padding: 14px 24px;
    margin-top: 20px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--main-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonials-load-more:hover {
    background: #eff2f8;
    border-color: var(--accent-1);
}

@media (max-width: 600px) {
    .testimonials-load-more {
        display: block;
    }
    
    .testimonials-load-more.hidden {
        display: none;
    }
}

/* Old testimonials (keep for backwards compatibility) */
.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--main-text);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .testimonial-content p {
        font-size: 1rem;
    }
}

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

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--main-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* LinkedIn Formatter Tool Styles */
.formatter-tool-section {
    margin-bottom: 30px;
}

.formatter-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--main-text);
    line-height: 1.7;
}

.formatter-intro strong {
    color: var(--main-text);
    font-weight: 600;
}

.formatter-tool {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.formatter-input-section,
.formatter-output-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.formatter-input-section label,
.formatter-output-section label {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: 600;
    color: var(--main-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.formatter-input-section textarea,
.formatter-output-section textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--main-text);
}

.formatter-input-section textarea:focus,
.formatter-output-section textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(109, 158, 255, 0.1);
}

.formatting-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.format-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    background: var(--light-gray);
    color: var(--main-text);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.format-btn:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: var(--white);
    transform: translateY(-1px);
}

.format-btn[data-format="clear"] {
    background: var(--accent-3);
    border-color: var(--accent-3);
    color: var(--white);
}

.format-btn[data-format="clear"]:hover {
    background: #e6821a;
    border-color: #e6821a;
}

.char-counter {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: right;
    margin-top: 8px;
}

.char-counter .char-count {
    font-weight: 600;
    color: var(--main-text);
}

.formatter-footer {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    margin-top: 20px;
}

.formatter-tip {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    font-style: italic;
    text-align: center;
}

.symbol-section {
    margin-top: 32px;
    border-top: 1px solid var(--border-gray);
    padding-top: 24px;
}

.symbol-section-heading p {
    margin: 4px 0 16px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.symbol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.symbol-card {
    border: 1px solid #edf1fb;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(15, 42, 101, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.symbol-card button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.symbol-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.symbol-swatch {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.symbol-meta {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.symbol-meta strong {
    display: block;
    color: var(--main-text);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.symbol-meta span {
    display: block;
    color: #6e7d9b;
}

/* Formatter Messages */
.formatter-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
    text-align: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.formatter-message-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.formatter-message-error {
    background: #fff3e0;
    color: #d84315;
    border: 1px solid #ff8a65;
}

/* Modern Formatter Tool Styles */
.formatter-tool-modern {
    max-width: 900px;
    margin: 0 auto;
}

.formatter-tool-modern textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--main-text);
    min-height: 200px;
}

.formatter-tool-modern textarea:focus {
    outline: none;
    border-color: #c0c0c0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.formatter-tool-modern textarea::placeholder {
    color: #b0b0b0;
}

.formatter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.toolbar-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--white);
    color: var(--main-text);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.toolbar-btn:hover {
    background: #eff2f8;
    border-color: #d0d0d0;
}

.toolbar-btn:active {
    transform: translateY(1px);
}

.toolbar-btn strong,
.toolbar-btn em,
.toolbar-btn u,
.toolbar-btn s {
    font-size: 1rem;
    font-style: normal;
}

.toolbar-btn em {
    font-style: italic;
}

.toolbar-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--white);
    color: var(--main-text);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.toolbar-clear-btn:hover {
    background: #eff2f8;
    border-color: #d0d0d0;
}

.toolbar-clear-btn:active {
    transform: translateY(1px);
}

.toolbar-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: var(--accent-1);
    color: var(--white);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.toolbar-copy-btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 158, 255, 0.3);
}

.toolbar-copy-btn:active {
    transform: translateY(0);
}

.toolbar-copy-btn svg {
    width: 16px;
    height: 16px;
}

/* New Formatter Layout */
.formatter-top-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: #d0d0d0;
    margin: 0 8px;
}

.formatter-split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    min-height: 350px;
}

.formatter-editor-panel {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e0e0e0;
}

.formatter-editor-panel textarea {
    flex: 1;
    border: none;
    padding: 20px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: none;
    outline: none;
}

.editor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.copy-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #e8f4fc;
    color: var(--accent-1);
    border: 1px solid #cce5f6;
    border-radius: 6px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-text-btn:hover {
    background: #d4ecf9;
    border-color: #b8ddf2;
}

.formatter-preview-panel {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.preview-header {
    padding: 12px 20px;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.linkedin-post-preview {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.linkedin-post-author {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.linkedin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.linkedin-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.linkedin-author-name {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--main-text);
}

.linkedin-author-headline {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

.linkedin-post-time {
    font-size: 0.75rem;
    color: #999;
}

.linkedin-post-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--main-text);
    white-space: pre-wrap;
    word-break: break-word;
    min-height: 100px;
}

.preview-placeholder {
    color: #999;
    font-style: italic;
}

.linkedin-post-engagement {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.engagement-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
}

.engagement-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.engagement-actions button {
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #666;
    cursor: default;
    border-radius: 4px;
}

/* Format Variations Grid */
.format-variations-section {
    margin-top: 40px;
}

.format-variations-section h3 {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.3rem;
    color: var(--main-text);
    margin-bottom: 8px;
}

.format-variations-intro {
    color: #666;
    margin-bottom: 24px;
}

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

.format-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.format-card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.format-card-label {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--main-text);
    padding: 12px 16px 8px;
}

.format-card-preview {
    padding: 12px 16px;
    min-height: 50px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--main-text);
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    word-break: break-word;
    white-space: pre-wrap;
}

.format-card-preview.empty {
    color: #999;
    font-style: italic;
}

.format-card-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: #e8f4fc;
    border: none;
    color: var(--accent-1);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.format-card-copy:hover {
    background: #d4ecf9;
}

.format-card-copy svg {
    width: 14px;
    height: 14px;
}

/* Mobile responsive for new formatter */
@media (max-width: 768px) {
    .formatter-split-view {
        grid-template-columns: 1fr;
    }
    
    .formatter-editor-panel {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .formatter-editor-panel textarea {
        min-height: 200px;
    }
    
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .engagement-actions {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .engagement-actions button {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .format-grid {
        grid-template-columns: 1fr;
    }
    
    .formatter-top-toolbar {
        padding: 10px 12px;
        gap: 4px;
    }
    
    .toolbar-divider {
        margin: 0 4px;
    }
}

.formatter-tool-modern .char-counter {
    font-size: 0.85rem;
    color: #999;
    text-align: right;
    margin-top: 8px;
}

.formatter-tool-modern .char-counter .char-count {
    font-weight: 600;
    color: #666;
}

.formatter-tool-modern .formatter-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
    text-align: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.formatter-tool-modern .formatter-message-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.formatter-tool-modern .formatter-message-error {
    background: #fff3e0;
    color: #d84315;
    border: 1px solid #ff8a65;
}

/* Ensure both input and output areas show Unicode characters properly */
#formatter-input,
#formatter-output {
    font-family: "Noto Sans", "DejaVu Sans", "Liberation Sans", "Arial Unicode MS", "Arial", sans-serif !important;
    font-size: 1rem !important;
}

/* Tools Page Styles */
.tools-hero-section {
    margin-bottom: 30px;
}

.tools-hero-section .section-card {
    padding: 56px 40px;
}

.tools-hero-title {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--main-text);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.tools-hero-subtitle {
    font-size: 1.4rem;
    color: var(--main-text);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.tools-hero-description {
    font-size: 1.1rem;
    color: var(--main-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.how-to-use-section {
    margin-bottom: 30px;
}

.how-to-use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.how-to-use-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--accent-1);
}

.how-to-use-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.how-to-use-step h3 {
    font-size: 1.3rem;
    color: var(--main-text);
    margin-bottom: 15px;
}

.how-to-use-step p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.coming-soon-section {
    margin-bottom: 30px;
}

.coming-soon-intro {
    font-size: 1.1rem;
    color: var(--main-text);
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.7;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.coming-soon-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.coming-soon-card:hover {
    transform: translateY(-2px);
}

.coming-soon-card h3 {
    font-size: 1.2rem;
    color: var(--main-text);
    margin-bottom: 15px;
}

.coming-soon-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coming-soon-badge {
    background: var(--accent-3);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Resources Section Styles */
.resources-section {
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.shop-coming-soon-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.shop-card {
    background: linear-gradient(135deg, #eff2f8 0%, #e8eef6 100%);
    border: 1px dashed #ccc;
}

.resource-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.resource-card-link:hover {
    border-color: var(--accent-1);
}

.resource-card-link .resource-title {
    color: var(--main-text);
}

.resource-card-link:hover .resource-title {
    color: var(--accent-1);
}

.resource-link-text {
    display: inline-block;
    margin-top: auto;
    padding-top: 15px;
    color: var(--accent-1);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Tools & Guides Tabs Layout */
.tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 14px 32px;
    background: none;
    border: none;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.tab-btn:hover {
    color: var(--main-text);
}

.tab-btn.active {
    color: var(--accent-1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-1);
    border-radius: 2px 2px 0 0;
}

.tabs-content {
    min-height: 200px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
    .tabs-nav {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .resources-grid-2col {
        grid-template-columns: 1fr;
    }
}

.resource-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:has(.resource-badge) {
    background: #eff2f8;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.resource-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.resource-label-tool {
    background: var(--accent-1);
    color: var(--white);
}

.resource-label-guide {
    background: var(--cta-green);
    color: var(--white);
}

.resource-label-article {
    background: var(--accent-3);
    color: var(--white);
}

.resource-title {
    font-size: 1.4rem;
    color: var(--main-text);
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-description {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.resource-badge {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: flex-start;
}

.tools-cta-section {
    margin-bottom: 30px;
}

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

.tools-cta-content h2 {
    font-size: 2.2rem;
    color: var(--main-text);
    margin-bottom: 20px;
}

.tools-cta-content p {
    font-size: 1.1rem;
    color: var(--main-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.tools-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active navigation link styling */
.nav-menu li a.active {
    color: var(--accent-1);
    font-weight: 600;
}

/* Mobile responsive for formatter tool */
@media (max-width: 768px) {
    .tools-hero-title {
        font-size: 3rem;
    }
    
    .tools-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .formatter-tool {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .formatter-tool-modern textarea {
        min-height: 180px;
        font-size: 0.95rem;
    }
    
    .formatter-toolbar {
        gap: 12px;
    }
    
    .toolbar-left {
        gap: 6px;
    }
    
    .toolbar-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .toolbar-clear-btn {
        height: 34px;
        padding: 0 14px;
        font-size: 0.85rem;
    }
    
    .toolbar-copy-btn {
        height: 34px;
        padding: 0 16px;
        font-size: 0.85rem;
        gap: 4px;
    }
    
    .toolbar-copy-btn:hover {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(109, 158, 255, 0.25);
    }
    
    .toolbar-copy-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .formatting-buttons {
        gap: 8px;
    }
    
    .format-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .formatter-input-section textarea,
    .formatter-output-section textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .how-to-use-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 25px;
    }
    
    .resource-title {
        font-size: 1.2rem;
    }
    
    .tools-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-cta-buttons .btn-primary,
    .tools-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Footer */
.footer {
    background: var(--main-text);
    color: var(--white);
    margin-top: 40px;
    border-radius: 8px;
    padding: 50px 40px 30px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.footer-brand-cell {
    vertical-align: top;
    width: 35%;
    padding: 0;
}

.footer-nav-cell {
    vertical-align: top;
    padding: 0;
    padding-right: 40px;
}

.footer-logo-img {
    height: 140px;
    width: auto;
    display: block;
    margin-top: -25px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    max-width: 280px;
}

.footer-nav-columns {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

/* Mobile footer table styles */
@media (max-width: 768px) {
    .footer-table,
    .footer-table tbody,
    .footer-table tr,
    .footer-table td {
        display: block;
        width: 100%;
}

    .footer-brand-cell {
        width: 100%;
        text-align: left;
        padding-bottom: 20px;
}

    .footer-logo-img {
        margin-top: -25px;
        margin-bottom: 25px;
        margin-left: -15px;
        height: 150px;
    }
    
    .footer-nav-cell {
        width: 100%;
        padding-right: 0;
}

    .footer-nav-columns {
        flex-direction: column;
        gap: 25px;
        justify-content: flex-start;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h4 {
        margin-bottom: 10px;
    }
}

.footer-column h4 {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 15px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--cta-green);
}

/* Keep old classes for other pages */
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo-stacked {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.05em;
    line-height: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-line-1 {
    font-size: 2.8rem;
}

.footer-line-2 {
    font-size: 2.8rem;
}

.footer-line-3 {
    font-size: 2.8rem;
}

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

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

.footer-bottom p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--cta-green);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: var(--accent-1);
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-copyright {
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--main-text);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Tablet-specific adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 30px 50px;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* LinkedIn page - 3 steps, show 2 on top, 1 below centered on tablet */
    .linkedin-how-it-works .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Website page - 4 steps, show 2x2 grid on tablet */
    .web-how-it-works .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Resume page - 3 steps, show 2 on top, 1 below on tablet */
    .web-how-it-works .process-steps-grid.process-steps-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-profile {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-profile-img {
        width: 250px;
        height: 250px;
    }
    
    .title-line-1, .title-line-2, .title-line-3 {
        font-size: 5.5rem;
    }
    
    .title-byline {
        font-size: 2rem;
    }
    
    .animated-text {
        min-width: 350px;
        width: 350px;
    }
    
    /* Profile optimization page tablet */
    .hero-title-single {
        font-size: 3.5rem;
        line-height: 1.15;
    }
    
    .hero-icon {
        width: 280px;
        height: 280px;
    }
    
    .hero-icon-section {
        margin-left: -20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: clip;
        width: 100%;
    }
    
    .main-nav {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: var(--white);
    }
    
    .special-offer-banner {
        padding: 11px 10px;
        min-height: 46px;
        height: auto;
    }
    
    .special-offer-banner .banner-text {
        font-size: 0.88rem;
        line-height: 1.45;
        width: calc(100% - 20px);
        max-width: none;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 145px;
        left: 0;
        width: 100%;
        height: calc(100vh - 145px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding-top: 20px;
        padding-bottom: 30px;
        transform: translateX(-100%);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu li.has-dropdown > a::after {
        content: '↓';
        transform: rotate(0deg) !important;
        transition: transform 0.3s ease;
    }
    
    .nav-menu li.has-dropdown.active > a::after {
        transform: rotate(-180deg) !important;
    }
    
    .nav-menu li.has-dropdown > a,
    .nav-menu li.has-dropdown.active > a {
        color: var(--main-text);
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .nav-menu li.has-dropdown.active .nav-dropdown {
        max-height: 300px;
        border-top: 1px solid var(--border-gray);
    }
    
    .nav-dropdown li a {
        padding-left: 40px;
    }
    
    .nav-menu {
        transition: transform 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 20px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-cta {
        margin: 20px !important;
        display: inline-block !important;
        width: auto !important;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-headline {
        font-size: 1.1rem;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        padding: 30px 20px 40px;
        text-align: left;
        overflow: visible;
        min-height: auto;
        height: auto;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-profile {
        order: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-text {
        order: 2;
        text-align: left;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto;
        box-sizing: border-box;
    }
    
    .hero-title {
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }
    
    .hero-title span {
        margin-left: 0;
        padding-left: 0;
    }
    
    .hero-profile .profile-img {
        width: 220px;
        height: 220px;
    }
    
    .hero-svg {
        width: 100% !important;
        max-width: 510px !important;
        height: auto !important;
    }
    
    .hero-text .hero-description {
        text-align: left !important;
        max-width: none !important;
        width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.6 !important;
        font-size: 1.1rem !important;
        margin: 20px 0 !important;
        margin-left: 0 !important;
        padding: 0 !important;
        padding-left: 0 !important;
        white-space: normal !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    .title-line-1 {
        font-size: 5.2rem;
    }
    
    .title-line-2 {
        font-size: 5.2rem;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -0.05em;
        position: relative;
        display: inline-block;
    }
    
    .animated-text {
        width: auto;
        min-width: 300px;
        margin-bottom: -0.1em;
    }
    
    .title-line-3 {
        font-size: 5.2rem;
    }
    
    .title-byline {
        font-size: 1.82rem;
        margin-left: 0;
        padding-left: 0;
        display: block;
    }
    
    .hero-profile .profile-img {
        width: 200px;
        height: 200px;
    }
    
    .hero-svg {
        width: 100% !important;
        max-width: 510px !important;
        height: auto !important;
    }
    
    .profile-actions {
        justify-content: flex-start;
    }
    
    /* Banner section mobile */
    .text-banner {
        text-align: left;
        padding: 40px 20px;
    }
    
    .banner-text-1, .banner-text-2, .banner-text-3 {
        display: block;
        text-align: left;
    }
    
    /* Turnkey section mobile */
    .turnkey-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .services-list {
        align-self: stretch;
        max-width: none;
    }
    
    .internet-presence-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .internet-presence-visual {
        order: -1;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .linkedin-how-it-works .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .web-how-it-works .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .web-how-it-works .process-steps-grid.process-steps-3 {
        grid-template-columns: 1fr;
    }
    
    .web-how-it-works .step-card {
        max-width: 100%;
        min-width: 0;
        padding: 20px 15px;
    }
    
    .web-how-it-works .step-title {
        word-break: normal;
        overflow-wrap: anywhere;
        white-space: normal;
    }
    
    .linkedin-how-it-works .step-card {
        max-width: 100%;
        min-width: 0;
        padding: 20px 15px;
    }
    
    .linkedin-how-it-works .step-title {
        word-break: normal;
        overflow-wrap: anywhere;
        white-space: normal;
    }
    
    /* Before/after slider mobile */
    .before-after-container {
        max-width: 100%;
        padding: 10px 0;
    }
    
    .slider-instruction {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    /* Profile optimization page single title mobile */
    .hero-title-single {
        font-size: 3rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Hero icon mobile */
    .hero-icon {
        width: 250px;
        height: 250px;
    }
    
    .hero-icon-section {
        margin-left: 0;
        justify-content: center;
        padding-left: 0;
        width: 100%;
    }
    
    /* FAQ Mobile Fixes */
    .faq-question {
        padding: 15px;
        font-size: 1.1rem;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question span:first-child {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.4;
    }
    
    .faq-toggle {
        flex-shrink: 0;
        font-size: 1.3rem;
        margin-top: 2px;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-content-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Profile optimization page - stack cards on mobile */
    .profile-packages-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Website development page - stack cards on mobile */
    .web-packages-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    /* Fees & Offers page - mobile */
    .bundles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title-simple {
        font-size: 2.5rem;
    }
    
    .fees-header {
        padding: 50px 20px;
        text-align: left;
    }
    
    .fees-header .hero-content-simple {
        text-align: left;
    }
    
    .fees-header .hero-title-simple {
        text-align: left;
    }
    
    .fees-header .hero-description {
        text-align: left;
    }
    
    .fees-header .hero-cta {
        justify-content: flex-start;
    }
    
    .fees-header .btn-primary {
        width: auto;
        max-width: 200px;
    }
    
    .brewbrand-tagline {
        font-size: 1.1rem;
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .brewbrand-text {
        font-size: 1.1rem;
        padding: 0 5px;
    }
    
    .brewbrand-logo {
        max-width: 150px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-line-1,
    .footer-line-2,
    .footer-line-3 {
        font-size: 2.2rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    /* Why Optimize mobile layout - mockup above text */
    .why-optimize-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-optimize-visual {
        order: -1;
    }
    
    .why-reasons-grid {
        grid-template-columns: 1fr;
    }
    
    /* Past Work mobile scrollable */
    .work-gallery {
        display: flex;
        overflow-x: auto;
        gap: 25px;
        scroll-behavior: smooth;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        flex-direction: row;
        /* Improve scroll performance and prevent modal opening during scroll */
        overscroll-behavior-x: contain;
    }
    
    .work-gallery .work-item {
        flex: 0 0 350px;
        scroll-snap-align: start;
        min-height: auto;
        /* Prevent touch events from interfering with horizontal scroll */
        touch-action: pan-x;
    }
    
    /* About section mobile - photo first */
    .about-simple {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 25px;
    }
    
    .about-profile-img {
        order: -1;
        width: 180px;
        height: 180px;
    }
    
    /* Footer mobile - left align everything */
    .footer-content {
        padding: 40px 20px;
    }
    
    .footer-brand {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-logo-stacked {
        text-align: left;
    }
    
    .footer-tagline {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h4 {
        text-align: left;
    }
    
    .footer-column ul {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-column li {
        text-align: left;
    }
    
    .footer-column a {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-bottom p {
        text-align: left;
    }
    
    /* Ensure proper text alignment on mobile */
    .section-card {
        text-align: left;
    }
    
    .services-cta {
        text-align: center;
    }
    
    /* Fix button alignment on mobile */
    .profile-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .hero-text {
        text-align: left;
    }
}

/* Narrow mobile screens - below 378px */
@media (max-width: 377px) {
    .special-offer-banner {
        padding: 11px 4px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .special-offer-banner .banner-text {
        font-size: 0.76rem;
        line-height: 1.6;
        width: calc(100% - 8px);
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        text-align: center;
        white-space: normal;
    }
    
    .animated-text {
        width: auto;
        min-width: 200px;
        max-width: 100%;
    }
}

/* Extremely small mobile screens - 320px */
@media (max-width: 320px) {
    .special-offer-banner {
        padding: 13px 2px;
        min-height: 63px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .special-offer-banner .banner-text {
        font-size: 0.68rem;
        line-height: 1.7;
        width: calc(100% - 4px);
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        text-align: center;
        white-space: normal;
    }
}

/* Very small mobile screens */
@media (max-width: 360px) {
    .hero-title-single {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-icon {
        width: 150px !important;
        height: 150px !important;
    }
    
    .hero-icon-section {
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .special-offer-banner {
        padding: 13px 3px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .special-offer-banner {
        padding: 11px 8px;
        min-height: 48px;
    }
    
    .special-offer-banner .banner-text {
        font-size: 0.85rem;
        line-height: 1.48;
        width: calc(100% - 16px);
        max-width: none;
        padding: 0;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
    }
    
    .hero-icon-section {
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .title-line-1 {
        font-size: 4.16rem;
    }
    
    .title-line-2 {
        font-size: 4.16rem;
        margin-bottom: -0.05em;
        position: relative;
        display: inline-block;
    }
    
    .animated-text {
        width: auto;
        min-width: 250px;
        margin-bottom: -0.1em;
    }
    
    .title-line-3 {
        font-size: 4.16rem;
    }
    
    .title-byline {
        font-size: 1.56rem;
    }
    
    /* Profile optimization single title - smaller mobile */
    .hero-title-single {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-icon {
        width: 190px;
        height: 190px;
    }
    
    .hero-profile .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-svg {
        width: 100% !important;
        max-width: 510px !important;
        height: auto !important;
    }
    
    .profile-headline {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1.8rem;
    }
    
    .cover-image {
        height: 200px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    /* Past Work mobile scrollable for smaller screens - override */
    .work-gallery {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 25px;
        scroll-behavior: smooth;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .work-item {
        flex: 0 0 320px;
        scroll-snap-align: start;
        min-height: auto;
        /* Prevent touch events from interfering with horizontal scroll */
        touch-action: pan-x;
    }
    
    
    .profile-details {
        margin-top: 60px;
    }
    
    
    /* About section smaller mobile */
    .about-profile-img {
        width: 150px;
        height: 150px;
    }
    
    /* Footer smaller mobile */
    .footer-brand {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    
    .footer-logo-stacked {
        text-align: left;
    }
    
    .footer-tagline {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h4 {
        text-align: left;
    }
    
    .footer-column ul {
        text-align: left;
    }
    
    .footer-column li {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
    }
}

/* ================================================
   EXECUTIVE THEME STYLES
   ================================================ */

/* Executive Theme Variables */
.executive-theme {
    --exec-navy: #0a1628;
    --exec-navy-light: #0f1f38;
    --exec-navy-card: #111d32;
    --exec-accent: #6d9eff;
    --exec-accent-light: #8ab4ff;
    background: var(--exec-navy);
    color: var(--white);
}

.executive-page {
    background: var(--exec-navy);
    min-height: 100vh;
}

.exec-hero-band {
    position: relative;
}

/* Executive Navigation */
.executive-nav {
    background: var(--exec-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.executive-nav .logo-text {
    color: var(--white);
}

.executive-nav .nav-menu li a {
    color: rgba(255, 255, 255, 0.8);
}

.executive-nav .nav-menu li a:hover {
    color: var(--exec-accent);
}

.executive-nav .hamburger {
    background: var(--white);
}

.executive-nav .nav-dropdown {
    background: var(--exec-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.executive-nav .nav-dropdown li a {
    color: rgba(255, 255, 255, 0.8);
}

.executive-nav .nav-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--exec-accent);
}

.executive-nav .nav-cta {
    background: var(--exec-accent) !important;
    border-color: var(--exec-accent) !important;
    color: var(--exec-navy) !important;
}

.executive-nav .nav-cta:hover {
    background: transparent !important;
    color: var(--exec-accent) !important;
}

/* Executive Hero */
.exec-hero {
    padding: 120px 40px 100px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.exec-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.exec-hero-glow {
    position: absolute;
    /* Center the glow across hero + first slider only */
    top: 45%;
    left: 50%;
    width: 1080px;
    height: 720px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 40%, rgba(141, 179, 255, 0.9), transparent 58%),
        radial-gradient(circle at 70% 60%, rgba(141, 179, 255, 0.55), transparent 72%);
    filter: blur(50px);
    opacity: 0.38;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: normal;
    z-index: 0;
    will-change: transform;
    animation: execInfinityGlow 24s ease-in-out infinite;
}

@keyframes execInfinityGlow {
    0% {
        /* far left, lower loop */
        transform: translate(-80%, 14%) scale(1.05);
    }
    20% {
        /* crossing center upward */
        transform: translate(-20%, -10%) scale(1.06);
    }
    35% {
        /* far right, upper loop */
        transform: translate(70%, -4%) scale(1.05);
    }
    50% {
        /* far right, lower loop */
        transform: translate(80%, 16%) scale(1.03);
    }
    65% {
        /* crossing center downward */
        transform: translate(15%, -8%) scale(1.06);
    }
    80% {
        /* far left, upper loop */
        transform: translate(-75%, -2%) scale(1.04);
    }
    100% {
        /* return to far left, lower loop */
        transform: translate(-80%, 14%) scale(1.05);
    }
}

/* Ensure hero + first section sit above background glow */
.exec-hero,
.exec-before-after-section {
    position: relative;
    z-index: 1;
}

.exec-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.exec-eyebrow {
    display: inline-block;
    color: var(--exec-accent);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(109, 158, 255, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
}

.exec-hero-title {
    font-family: 'Neulis Alt', 'NeulisAlt-Bold', Arial, sans-serif;
    font-size: 4.5rem;
    line-height: 1.05;
    margin: 0;
    color: var(--white);
    letter-spacing: -0.05em;
    font-weight: 500;
}

.exec-title-accent {
    color: var(--exec-accent);
}

.exec-hero-subtitle {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
}

.exec-hero-cta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.exec-btn-primary {
    display: inline-block;
    background: var(--exec-accent);
    color: var(--exec-navy);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--exec-accent);
}

.exec-btn-primary:hover {
    background: var(--exec-accent-light);
    border-color: var(--exec-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 158, 255, 0.3);
}

.exec-btn-large {
    padding: 22px 50px;
    font-size: 1.1rem;
}

.exec-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--exec-accent);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--exec-accent);
}

.exec-btn-secondary:hover {
    background: var(--exec-accent);
    color: var(--exec-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 158, 255, 0.3);
}

/* Stacking Cards Section - Two Column Layout */
.exec-cards-section {
    padding: 0 40px 200px;
    max-width: 1200px;
    margin: 0 auto;
}

.exec-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: stretch;
}

.exec-cards-container {
    display: block;
}

.exec-card {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #0d1525;
}


.exec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: -1;
}

.exec-card:nth-child(1) { 
    top: 100px; 
    z-index: 1; 
    background: #0d1525;
}
.exec-card:nth-child(1)::before {
    background: #0d1525;
}

.exec-card:nth-child(2) { 
    top: 140px; 
    z-index: 2; 
    background: #0f1829;
}
.exec-card:nth-child(2)::before {
    background: #0f1829;
}

/* Cards 2 and 3: single column bullet points */
.exec-card:nth-child(2) .exec-card-features,
.exec-card:nth-child(3) .exec-card-features {
    grid-template-columns: 1fr;
}

.exec-card:nth-child(3) { 
    top: 180px; 
    z-index: 3; 
    background: #111b2d;
}
.exec-card:nth-child(3)::before {
    background: #111b2d;
}

.exec-card:nth-child(4) { 
    top: 220px; 
    z-index: 4; 
    margin-bottom: 100px;
    background: #131e31;
}
.exec-card:nth-child(4)::before {
    background: #131e31;
}

.exec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.exec-card-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    padding: 35px;
    align-items: start;
    border-radius: 16px;
}

/* Sticky Pricing on Right */
.exec-pricing-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
}

.exec-pricing-card {
    background: #111b2d;
    border: 1px solid rgba(109, 158, 255, 0.3);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
}

.exec-pricing-card .exec-pricing-label {
    display: block;
    margin-bottom: 20px;
}

.exec-pricing-card .exec-price {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.exec-pricing-card .exec-pricing-note {
    margin-bottom: 20px;
}

.exec-pricing-card .exec-value-line {
    margin-bottom: 25px;
}

.exec-pricing-card .exec-btn-cta {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 15px;
}

.exec-pricing-card .exec-pricing-subtext {
    font-size: 0.85rem;
}

.exec-card-number {
    font-family: 'NeulisAlt-Bold', 'Neulis Sans Semi Bold', Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--exec-accent);
    letter-spacing: 2px;
    opacity: 0.6;
}

.exec-card-content {
    flex: 1;
}

.exec-card-title {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 0 12px 0;
    font-weight: bold;
}

.exec-card-description {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

.exec-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.exec-card-features li {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 20px;
    position: relative;
}

.exec-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--exec-accent);
    font-weight: bold;
}

.exec-card-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.exec-visual-icon {
    font-size: 3rem;
    color: var(--exec-accent);
    opacity: 0.3;
}

/* Brewbrand Card Specific */
.exec-card-brewbrand {
    background: #131e31 !important;
    border-color: rgba(109, 158, 255, 0.25);
}
.exec-card-brewbrand::before {
    background: #131e31 !important;
}

.exec-brewbrand-logo-wrapper {
    margin: 25px 0;
}

.exec-brewbrand-logo-wrapper a {
    display: inline-block;
    transition: all 0.3s ease;
}

.exec-brewbrand-logo-wrapper a:hover {
    opacity: 0.8;
}

.exec-brewbrand-logo {
    width: 180px;
    height: auto;
    display: block;
}

.exec-card-value {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1rem;
    color: var(--exec-accent);
    margin: 0;
}

.exec-pricing-label {
    display: inline-block;
    color: var(--exec-accent);
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.exec-price {
    font-family: 'Neulis Alt', 'NeulisAlt-Bold', Arial, sans-serif;
    font-size: 5rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.exec-pricing-note {
    font-family: 'Instrument Sans', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.exec-value-line {
    font-family: 'Instrument Sans', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.exec-value-line strong {
    color: var(--accent-3);
}

.exec-btn-cta {
    display: inline-block;
    background: var(--exec-accent);
    color: var(--exec-navy);
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.exec-btn-cta:hover {
    background: var(--exec-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 158, 255, 0.3);
}

.exec-pricing-subtext {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Executive Audience Section */
.exec-audience-section {
    padding: 60px 40px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.exec-section-title {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.exec-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.exec-audience-item {
    background: #111d32;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 22px 28px;
    text-align: center;
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.exec-audience-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(109, 158, 255, 0.3);
    color: var(--white);
}

/* Executive Companies Section */
.exec-companies-section {
    padding: 60px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.exec-companies-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.exec-companies-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
    width: fit-content;
    animation: scrollLogos 30s linear infinite;
}

.exec-company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 150px;
    height: 80px;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.exec-company-logo.ibm-logo {
    min-width: 210px;
    height: 112px;
    padding: 28px;
}

.exec-company-logo.ibm-logo .company-logo-img {
    transform: scale(1.4);
}

.exec-company-logo:hover {
    opacity: 1;
}

.exec-company-logo:hover .company-logo-img {
    transform: scale(1.05);
}

.company-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Executive Final CTA */
.exec-final-cta {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(109, 158, 255, 0.03) 100%);
}

.exec-final-title {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin: 0 0 16px 0;
    font-weight: bold;
}

.exec-final-subtitle {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 40px 0;
}

.exec-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Executive Before/After Slider */
.exec-before-after-section {
    padding: 0 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.exec-section-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.executive-theme .before-after-slider {
    border-radius: 12px;
    overflow: hidden;
}

.executive-theme .slider-button {
    background: white;
    border: 3px solid var(--exec-accent);
}

.executive-theme .slider-line {
    background: var(--exec-accent);
}

.executive-theme .slider-arrow {
    color: var(--exec-accent);
}

.executive-theme .image-label {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
}

.executive-theme .before-label {
    background: rgba(0, 0, 0, 0.7);
}

.executive-theme .after-label {
    background: var(--exec-accent);
    color: var(--exec-navy);
}

.exec-slider-instruction {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Instrument Sans', Arial, sans-serif;
}

/* Small before/after slider */
.exec-before-after-small {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px 20px;
}

.exec-before-after-small .exec-section-card {
    padding: 20px;
}

/* Executive Benefits Section */
.exec-benefits-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.exec-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.exec-benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.exec-benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(109, 158, 255, 0.3);
    transform: translateY(-4px);
}

.exec-benefit-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 18px;
    color: var(--exec-accent);
}

.exec-benefit-item h3 {
    font-family: 'Neulis Alt', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.exec-benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .exec-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .exec-benefits-section {
        padding: 60px 20px;
    }
    
    .exec-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .exec-benefit-item {
        padding: 25px 20px;
    }
}

/* Executive Testimonials */
.exec-testimonials-section {
    padding: 60px 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.exec-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.exec-testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
}

.exec-testimonial-stars {
    color: var(--exec-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.exec-testimonial-text {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px 0;
    font-style: italic;
}

.exec-testimonial-author {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--white);
}

@media (max-width: 1024px) {
    .exec-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .exec-testimonials-section {
        padding: 40px 20px 60px;
    }
    
    .exec-testimonial-card {
        padding: 25px 20px;
    }
    
    .exec-testimonial-text {
        font-size: 0.9rem;
    }
}

/* Executive Testimonials Masonry Layout - Dark Theme */
.exec-testimonials-masonry {
    column-count: 3;
    column-gap: 20px;
}

.exec-testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.exec-testimonial-card-new:hover {
    border-color: var(--accent-1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.exec-testimonial-card-new .testimonial-author-info-new h4 {
    color: var(--white);
}

.exec-testimonial-card-new .testimonial-position-new {
    color: rgba(255, 255, 255, 0.7);
}

.exec-testimonial-card-new .testimonial-stars-new {
    color: var(--accent-3);
}

.exec-testimonial-card-new .testimonial-text-new {
    color: rgba(255, 255, 255, 0.9);
}

.exec-testimonial-card-new .read-more-btn-new {
    color: var(--accent-1);
}

.exec-testimonial-card-new .read-more-btn-new:hover {
    color: var(--accent-2);
}

.exec-testimonial-card-new .testimonial-date-new {
    color: rgba(255, 255, 255, 0.5);
}

.exec-testimonial-card-new .testimonial-pic-new {
    border-color: var(--accent-1);
}

@media (max-width: 1024px) {
    .exec-testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .exec-testimonials-masonry {
        column-count: 1;
    }
}

/* Executive FAQ Section */
.exec-faq-section {
    padding: 60px 40px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.exec-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exec-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.exec-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.exec-faq-question span:first-child {
    font-family: 'Neulis Sans Medium', Arial, sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.4;
}

.exec-faq-toggle {
    font-size: 1.5rem;
    color: var(--exec-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.exec-faq-item.active .exec-faq-toggle {
    transform: rotate(45deg);
}

.exec-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.exec-faq-item.active .exec-faq-answer {
    max-height: 500px;
}

.exec-faq-answer p {
    padding: 0 25px 20px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .exec-faq-section {
        padding: 40px 20px 60px;
    }
    
    .exec-faq-question {
        padding: 18px 20px;
    }
    
    .exec-faq-question span:first-child {
        font-size: 0.95rem;
    }
    
    .exec-faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
}

/* Executive Footer */
.exec-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.exec-footer .footer-column a:hover {
    color: var(--exec-accent);
}

.exec-footer .footer-bottom a {
    color: var(--exec-accent);
}

.exec-footer .footer-bottom a:hover {
    color: var(--exec-accent-light);
}

/* Executive Footer Mobile Alignment */
@media (max-width: 768px) {
    .exec-footer .footer-top {
        text-align: left;
    }
    
    .exec-footer .footer-brand {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    
    .exec-footer .footer-logo-stacked {
        text-align: left;
    }
    
    .exec-footer .footer-tagline {
        text-align: left;
    }
    
    .exec-footer .footer-links {
        text-align: left;
    }
    
    .exec-footer .footer-column {
        text-align: left;
    }
    
    .exec-footer .footer-column h4 {
        text-align: left;
    }
    
    .exec-footer .footer-column ul {
        text-align: left;
    }
    
    .exec-footer .footer-column li {
        text-align: left;
    }
    
    .exec-footer .footer-bottom {
        text-align: left;
    }
}

/* Executive Theme Mobile Responsive */
@media (max-width: 1024px) {
    .exec-two-column-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .exec-pricing-sticky {
        position: relative;
        top: 0;
    }
    
    .exec-pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .exec-pricing-card .exec-price {
        font-size: 4rem;
    }
    
    .exec-card-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only-break {
        display: none;
    }
    
    .exec-hero {
        padding: 80px 20px 60px;
    }
    
    .exec-hero-title {
        font-size: 2.5rem;
    }
    
    .exec-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .exec-cards-section {
        padding: 0 20px 40px;
    }
    
    .exec-two-column-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* On mobile: pricing card appears first (will be under slider), then cards */
    .exec-pricing-sticky {
        order: -1;
        position: relative;
        top: 0;
        width: 100%;
    }
    
    .exec-cards-container {
        order: 1;
    }
    
    .exec-card {
        position: relative;
        top: 0 !important;
        margin-bottom: 20px;
        background: #111b2d !important;
    }
    
    .exec-card::before {
        background: #111b2d !important;
    }
    
    .exec-card:last-child {
        margin-bottom: 20px;
    }
    
    .exec-card-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .exec-card-number {
        font-size: 0.9rem;
    }
    
    .exec-card-title {
        font-size: 1.3rem;
    }
    
    .exec-card-description {
        font-size: 0.95rem;
    }
    
    .exec-pricing-card {
        padding: 30px 25px;
        max-width: 320px;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .exec-pricing-card .exec-price {
        font-size: 3rem;
    }
    
    .exec-audience-section {
        padding: 40px 20px 60px;
    }
    
    .exec-companies-section {
        padding: 40px 0 60px;
        overflow: hidden;
    }
    
    .exec-companies-wrapper {
        padding: 0 20px;
    }
    
    .exec-companies-grid {
        animation: scrollLogos 30s linear infinite;
        gap: 40px;
    }
    
    .exec-company-logo {
        height: 60px;
        padding: 15px;
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .exec-company-logo.ibm-logo {
        min-width: 168px;
        height: 84px;
        padding: 21px;
    }
    
    .exec-company-logo.ibm-logo .company-logo-img {
        transform: scale(1.4);
    }
    
    .exec-section-title {
        font-size: 1.8rem;
    }
    
    .exec-audience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .exec-final-cta {
        padding: 60px 20px;
    }
    
    .exec-final-title {
        font-size: 1.8rem;
    }
    
    .exec-final-subtitle {
        font-size: 1rem;
    }
    
    .exec-before-after-section {
        padding: 0 20px 40px;
    }
    
    .exec-section-card {
        padding: 20px;
    }
    
    /* Executive nav mobile menu fix */
    .executive-nav .nav-menu {
        background: #0a1628;
    }
    
    .executive-nav .nav-dropdown {
        background: #0a1628;
        border: none;
    }
    
    .executive-nav .nav-menu li.has-dropdown.active .nav-dropdown {
        border-top: none;
    }
}
