/* 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: #f3f2ef;
    --border-gray: #e0dfdc;
    --dark-gray: #666666;
}


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

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

/* Special Offer Banner */
.special-offer-banner {
    background-color: #d1e1ff;
    color: var(--main-text);
    padding: 16px 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
    min-height: fit-content;
    height: auto;
}

.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% - 40px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.special-offer-banner .banner-text.active {
    opacity: 1;
}

.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;
    letter-spacing: -0.05em;
}

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

.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;
}

.nav-menu li a:hover {
    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;
}

.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;
}

/* 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: 5px;
    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.5rem;
}

.title-line-2 {
    font-size: 6.5rem;
    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-item:nth-child(1) {
    color: var(--main-text);
}

.text-item:nth-child(2) {
    color: var(--accent-3);
    margin-bottom: -0.1em;
}

.text-item:nth-child(3) {
    color: var(--accent-1);
}

.text-item:nth-child(4) {
    color: #22c65f;
}

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

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

.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;
    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;
}

.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);
}

/* 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);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--main-text);
}

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

.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-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-mockup-link {
    text-decoration: none;
    display: block;
    max-width: 350px;
    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: 80px;
    object-fit: cover;
    display: block;
}

.mockup-profile-section {
    padding: 20px;
    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.95rem;
    color: var(--main-text);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.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;
}

.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-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.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: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.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;
}

/* 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: 18px 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(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    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-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.standard {
    background: var(--cta-green);
}

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

.service-badge.web {
    background: var(--accent-3);
}

.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: auto;
}

.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;
}

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

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* 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;
}

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

.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;
}

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

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

/* 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;
}

/* 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;
}

/* 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-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;
}

.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;
    }
    
    .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;
    }
    
    .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 20px 30px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 40px;
    padding-left: 40px;
}

.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;
    margin-left: 0;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

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

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

.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);
}

.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;
    }
    
    .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;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .special-offer-banner {
        padding: 14px 15px;
        min-height: auto;
        height: auto;
    }
    
    .special-offer-banner .banner-text {
        font-size: 0.85rem;
        line-height: 1.4;
        width: calc(100% - 30px);
        white-space: normal;
        word-wrap: break-word;
    }
    
    .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: 40px;
        transform: translateX(-100%);
        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;
    }
    
    .hero-profile .profile-img {
        width: 220px;
        height: 220px;
    }
    
    .hero-svg {
        width: 510px !important;
        height: auto !important;
    }
    
    .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;
        padding: 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;
    }
    
    .hero-profile .profile-img {
        width: 200px;
        height: 200px;
    }
    
    .hero-svg {
        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;
    }
    
    /* 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;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    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;
    }
    
    /* 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 */
    .footer-brand {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }
    
    .footer-bottom {
        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-wrap: wrap;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .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;
    }
    
    .hero-profile .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-svg {
        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: 15px;
        padding-right: 15px;
    }
}
