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

:root {
    --color-primary: #BC6FF1;
    --color-secondary: #52057B;
    --color-tertiary: #2C093F;
    --color-dark: #170122;
    --color-accent: #FAEB92;
    --color-black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-black);
    color: var(--color-accent);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

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

.nav-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    text-transform: lowercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 0;
}

.nav-link:hover {
    color: #170122;
    background: #FAEB92;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-accent);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 6rem 3rem 4rem;
    position: relative;
}

.section-home {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(to right, #000000 0%, #000000 50%, #170122 50%, #170122 100%);
    position: relative;
    overflow: hidden;
}


.home-content {
    text-align: center;
    z-index: 1;
    max-width: 100%;
    width: 100%;
}

.home-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-top: 6rem;
    margin-bottom: 1rem;
    color: #FAEB92;
    font-weight: 700;
    line-height: 1.2;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    max-width: 100%;
}

.title-hash {
    font-family: 'Zilla Slab Highlight', cursive;
    text-align: right;
    padding-right: 0.5rem;
    animation: neonFlicker 2.5s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% {
        filter: blur(0px);
        color: #FAEB92;
        text-shadow: 0 0 15px #FAEB92, 0 0 25px #FAEB92;
    }
    40% {
        filter: blur(0px);
        color: #FAEB92;
        text-shadow: 0 0 15px #FAEB92, 0 0 25px #FAEB92;
    }
    45% {
        filter: blur(5px);
        color: #52057B;
        text-shadow: 0 0 30px #52057B, 0 0 50px #52057B;
    }
    50% {
        filter: blur(0px);
        color: #FAEB92;
        text-shadow: 0 0 15px #FAEB92, 0 0 25px #FAEB92;
    }
    52% {
        filter: blur(4px);
        color: #52057B;
        text-shadow: 0 0 25px #52057B;
    }
    55% {
        filter: blur(0px);
        color: #FAEB92;
        text-shadow: 0 0 15px #FAEB92, 0 0 25px #FAEB92;
    }
}

.title-hunters {
    font-family: 'Zilla Slab', serif;
    text-align: left;
    padding-left: 0.5rem;
}

.subtitle {
    font-size: clamp(1.95rem, 5.85vw, 2.925rem);
    margin-top: 6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(250, 235, 146, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(250, 235, 146, 0.3);
}


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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: left;
    margin-bottom: 3rem;
    color: #FAEB92;
    font-weight: 700;
    text-transform: lowercase;
}

/* About Section */
.section-about {
    background: linear-gradient(to right, #2C093F 0%, #2C093F 50%, #000000 50%, #000000 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.about-left {
    padding-right: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-right {
    padding-left: 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.about-text {
    text-align: justify;
    font-size: 2rem;
    line-height: 1.8;
    margin-right: 5px;
}

.achievements-title {
    font-size: clamp(1.7rem, 4.2vw, 2.8rem);
    text-align: right;
    margin-bottom: 3rem;
    color: #FAEB92;
    font-weight: 700;
    text-transform: lowercase;
    width: 100%;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    margin-left: 5px;
}

.achievement-card {
    background: #52057B;
    padding: 2rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(188, 111, 241, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: #000000;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    font-family: 'Zilla Slab', serif;
}

.achievement-card:nth-child(1)::before {
    content: '$';
}

.achievement-card:nth-child(2)::before {
    content: '&';
}

.achievement-card:nth-child(3)::before {
    content: '§';
}

.achievement-card:nth-child(4)::before {
    content: '#';
}

.achievement-card:nth-child(5)::before {
    content: '*';
}

.achievement-card:nth-child(6)::before {
    content: '@';
}

.achievement-card:nth-child(1) {
    background: #6700BA;
}

.achievement-card:nth-child(2) {
    background: #BC6FF1;
}

.achievement-card:nth-child(3) {
    background: #52057B;
}

.achievement-card:nth-child(4) {
    background: #2C093F;
}

.achievement-card:nth-child(5) {
    background: #BC6FF1;
}

.achievement-card:nth-child(6) {
    background: #6700BA;
}

.achievement-card:hover {
    background: #FAEB92;
    transform: translateY(-8px) translateX(4px);
    border-color: rgba(188, 111, 241, 0.6);
    box-shadow: -8px 8px 0px rgba(188, 111, 241, 0.3);
}

.achievement-card:hover p {
    transform: translateX(-2px);
    color: #170122;
}

.achievement-card p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-accent);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

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

.about-content > p {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.feature-card {
    background: rgba(188, 111, 241, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(188, 111, 241, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(188, 111, 241, 0.2);
}

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

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Companies Section */
.section-companies {
    background: linear-gradient(to right, #000000 0%, #000000 50%, #52057B 50%, #52057B 100%);
}

.companies-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.companies-left {
    padding-right: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.companies-right {
    padding-left: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.companies-text {
    text-align: justify;
    font-size: 2rem;
    line-height: 1.8;
    margin-right: 5px;
}

.services-title {
    font-size: clamp(1.7rem, 4.2vw, 2.8rem);
    text-align: right;
    margin-bottom: 3rem;
    color: #FAEB92;
    font-weight: 700;
    text-transform: lowercase;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    margin-left: 5px;
}

.service-card {
    background: #52057B;
    padding: 2rem 1.5rem;
    border-radius: 0 !important;
    border: 1px solid rgba(188, 111, 241, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: #000000;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    font-family: 'Zilla Slab', serif;
}

.service-card:nth-child(1)::before {
    content: '&';
}

.service-card:nth-child(2)::before {
    content: '#';
}

.service-card:nth-child(3)::before {
    content: '@';
}

.service-card:nth-child(4)::before {
    content: '$';
}

.service-card:nth-child(5)::before {
    content: '*';
}

.service-card:nth-child(6)::before {
    content: '§';
}

.service-card:nth-child(1) {
    background: #52057B;
}

.service-card:nth-child(2) {
    background: #6700BA;
}

.service-card:nth-child(3) {
    background: #BC6FF1;
}

.service-card:nth-child(4) {
    background: #2C093F;
}

.service-card:nth-child(5) {
    background: #52057B;
}

.service-card:nth-child(6) {
    background: #6700BA;
}

.service-card:hover {
    background: #FAEB92;
    transform: translateY(-8px) translateX(4px);
    border-color: rgba(188, 111, 241, 0.6);
    box-shadow: -8px 8px 0px rgba(188, 111, 241, 0.3);
}

.service-card:hover p {
    transform: translateX(-2px);
    color: #170122;
}

.service-card p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-accent);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.intro-text {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Individuals Section */
.section-individuals {
    background: linear-gradient(to right, #170122 0%, #170122 50%, #2C093F 50%, #2C093F 100%);
}

.individuals-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.individuals-left {
    padding-right: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.individuals-right {
    padding-left: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.individuals-text {
    text-align: justify;
    font-size: 2rem;
    line-height: 1.8;
    margin-right: 5px;
}

.how-we-work-title {
    font-size: clamp(1.7rem, 4.2vw, 2.8rem);
    text-align: right;
    margin-bottom: 3rem;
    color: #FAEB92;
    font-weight: 700;
    text-transform: lowercase;
    width: 100%;
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-left: 5px;
}

.work-step-card {
    background: #52057B;
    padding: 2rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(188, 111, 241, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.work-step-card::before {
    content: '';
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: #000000;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    font-family: 'Zilla Slab', serif;
    top: 10px;
    right: 15px;
}

.work-step-card:nth-child(1)::before {
    content: '1';
}

.work-step-card:nth-child(2)::before {
    content: '2';
}

.work-step-card:nth-child(3)::before {
    content: '3';
}

.work-step-card:nth-child(4)::before {
    content: '4';
}

.work-step-card:nth-child(1) {
    background: #BC6FF1;
}

.work-step-card:nth-child(2) {
    background: #52057B;
}

.work-step-card:nth-child(3) {
    background: #6700BA;
}

.work-step-card:nth-child(4) {
    background: #BC6FF1;
}

.work-step-card:hover {
    background: #FAEB92;
    transform: translateY(-8px) translateX(4px);
    border-color: rgba(188, 111, 241, 0.6);
    box-shadow: -8px 8px 0px rgba(188, 111, 241, 0.3);
}

.work-step-card:hover h4,
.work-step-card:hover p {
    color: #170122;
}

.work-step-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FAEB92;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.work-step-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-accent);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Contact Section */
.section-contact {
    background: linear-gradient(to right, #BC6FF1 0%, #BC6FF1 50%, #000000 50%, #000000 100%);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding-right: 6rem;
}

.contact-form-wrapper {
    padding-left: 6rem;
}

.info-item {
    background: #52057B;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(188, 111, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.info-item:hover {
    background: #FAEB92;
    transform: translateY(-8px) translateX(4px);
    border-color: rgba(188, 111, 241, 0.6);
    box-shadow: -8px 8px 0px rgba(188, 111, 241, 0.3);
}

.info-item:hover h3,
.info-item:hover p,
.info-item:hover a,
.info-item:hover .contact-icon {
    color: #170122;
    transform: translateX(-2px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
    font-family: 'Zilla Slab', serif;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.info-item h3 {
    color: var(--color-accent);
    margin-bottom: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.soon-badge {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
    font-style: italic;
}

.telegram-handle {
    text-decoration: line-through;
    opacity: 0.6;
}

.clickable-box {
    cursor: pointer;
}

.clickable-box:hover {
    cursor: pointer;
}

/* Copy notification toast */
.copy-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: #FAEB92;
    color: #170122;
    padding: 1rem 2rem;
    border-radius: 0;
    border: 2px solid #170122;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    box-shadow: -4px 4px 0px #170122;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.info-item p {
    color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.info-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(0);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #52057B;
    padding: 2rem;
    border: 1px solid rgba(188, 111, 241, 0.2);
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-title {
    color: var(--color-accent);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form:hover .form-title {
    color: #170122;
}

.contact-form:hover {
    background: #FAEB92;
    transform: translateY(-8px) translateX(4px);
    border-color: rgba(188, 111, 241, 0.6);
    box-shadow: -8px 8px 0px rgba(188, 111, 241, 0.3);
}

.contact-form:hover input,
.contact-form:hover textarea,
.contact-form:hover input::placeholder,
.contact-form:hover textarea::placeholder {
    color: #170122;
    border-color: rgba(23, 1, 34, 0.3);
}

.contact-form:hover button {
    background: #170122;
    color: #FAEB92;
    border-color: #170122;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 0;
    border: 2px solid rgba(188, 111, 241, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-accent);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(188, 111, 241, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(250, 235, 146, 0.5);
}

.contact-form button {
    align-self: flex-start;
}

.contact-submit {
    border-radius: 0 !important;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #BC6FF1 0%, #BC6FF1 50%, #000000 50%, #000000 100%);
    padding: 2rem;
    border-top: none;
}

.footer-content {
    max-width: 2200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Animations */
.fade-in {
    opacity: 1;
}

.fade-in-delay {
    opacity: 1;
}

.fade-in-delay-2 {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding-top: 80px;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
    }

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

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

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

    .section {
        padding: 5rem 1rem 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .about-left,
    .about-right {
        padding: 0;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-right: 0;
    }

    .about-right {
        padding-top: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .achievement-card {
        padding: 1.5rem 1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .achievement-card p {
        font-size: 0.9rem;
    }

    .companies-layout {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .companies-left,
    .companies-right {
        padding: 0;
    }

    .companies-right {
        padding-top: 2rem;
    }

    .companies-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-left: 0;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .individuals-layout {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .individuals-left,
    .individuals-right {
        padding: 0;
    }

    .individuals-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-right: 0;
    }

    .individuals-right {
        padding-top: 2rem;
    }

    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-left: 0;
    }

    .work-step-card {
        padding: 1.5rem 1rem;
    }

    .work-step-card h4 {
        font-size: 1.2rem;
    }

    .work-step-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-mobile {
        height: 35px;
    }
    
    .logo img {
        height: 40px;
    }

    .home-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

