* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --bgColor: #080B14;
    --primaryPurple: #6440b8;
    --primaryPurpleLight: #7c5cff;
    --primaryPurpleDark: #6d48c5;
    --primaryPurpleLightExtra: #8a6cff;
    --textWhite: #ffffff;
    --textGray: #a5a1a1;
    --darkBg: #080808;
    --darkPurpleBg: #230b5a;
    --borderGray: #1a1a1a;
    --shadowColor: rgba(0, 0, 0, 0.4);
}

html,
body {
    background: var(--bgColor);
    color: var(--textWhite);
    overflow-x: hidden;
    overflow-y: auto !important;
    scroll-behavior: smooth;
}

body {
    overflow-y: auto !important;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--textWhite);
    cursor: pointer;
    transition: color 0.3s ease;
}

li {
    list-style: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 32px);
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: clamp(64px, 8vh, 76px);
    background: rgba(8, 11, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 clamp(16px, 2vw, 32px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

header .logo img {
    height: clamp(38px, 5vw, 46px);
    width: auto;
    display: block;
}

header .logo span {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--textWhite);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

header nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

header .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 36px);
}

header .nav-links a {
    color: var(--textGray);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    position: relative;
}

header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primaryPurple);
    transition: width 0.3s ease;
}

header .nav-links a:hover::after {
    width: 100%;
}

header .nav-links a:hover {
    color: var(--textWhite);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn {
    height: clamp(38px, 5vh, 44px);
    padding: 0 clamp(16px, 1.5vw, 24px);
    border: 1px solid var(--borderGray);
    border-radius: 10px;
    background: transparent;
    color: var(--textGray);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn:hover {
    border-color: var(--textWhite);
    color: var(--textWhite);
}

.cta-btn {
    height: clamp(38px, 5vh, 44px);
    padding: 0 clamp(16px, 1.5vw, 24px);
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    color: var(--textWhite);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(100, 64, 184, 0.25);
    white-space: nowrap;
}

.cta-btn:hover {
    box-shadow: 0 8px 24px rgba(100, 64, 184, 0.4);
    transform: translateY(-2px);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu .profile-btn {
    height: clamp(38px, 5vh, 44px);
    padding: 0 clamp(14px, 1.2vw, 18px);
    border: 1px solid var(--borderGray);
    border-radius: 10px;
    background: transparent;
    color: var(--textGray);
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.user-menu .profile-btn:hover {
    border-color: var(--primaryPurple);
    color: var(--textWhite);
}

.user-menu .logout-btn {
    height: clamp(38px, 5vh, 44px);
    padding: 0 clamp(14px, 1.2vw, 18px);
    border: 1px solid #ff4757;
    border-radius: 10px;
    background: transparent;
    color: #ff4757;
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.user-menu .logout-btn:hover {
    background: rgba(255, 71, 87, 0.15);
    border-color: #ff6b7a;
    color: #ff6b7a;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--textWhite);
    font-size: clamp(28px, 3vw, 32px);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: var(--primaryPurple);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: var(--darkBg);
    border-left: 1px solid var(--borderGray);
    z-index: 1001;
    padding: 80px 24px 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    right: 0;
    display: block;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--textWhite);
    font-size: 30px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu .mobile-nav-links a {
    color: var(--textGray);
    font-size: 17px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-menu .mobile-nav-links a:hover {
    color: var(--textWhite);
}

.mobile-menu .mobile-auth-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--borderGray);
}

.mobile-menu .mobile-auth-btns button {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-auth-btns .mobile-login-btn {
    background: transparent;
    border: 1px solid var(--borderGray);
    color: var(--textGray);
}

.mobile-menu .mobile-auth-btns .mobile-login-btn:hover {
    border-color: var(--textWhite);
    color: var(--textWhite);
}

.mobile-menu .mobile-auth-btns .mobile-cta-btn {
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    border: none;
    color: var(--textWhite);
    box-shadow: 0 4px 12px rgba(100, 64, 184, 0.25);
}

.mobile-menu .mobile-auth-btns .mobile-cta-btn:hover {
    box-shadow: 0 8px 24px rgba(100, 64, 184, 0.4);
}

.mobile-menu .mobile-user-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--borderGray);
}

.mobile-menu .mobile-user-menu button {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.mobile-menu .mobile-user-menu .mobile-profile-btn {
    background: transparent;
    border: 1px solid var(--borderGray);
    color: var(--textGray);
}

.mobile-menu .mobile-user-menu .mobile-profile-btn:hover {
    border-color: var(--primaryPurple);
    color: var(--textWhite);
}

.mobile-menu .mobile-user-menu .mobile-logout-btn {
    background: transparent;
    border: 1px solid #ff4757;
    color: #ff4757;
}

.mobile-menu .mobile-user-menu .mobile-logout-btn:hover {
    background: rgba(255, 71, 87, 0.15);
    border-color: #ff6b7a;
    color: #ff6b7a;
}

/* ============================================
   SECTIONS
   ============================================ */
.sec-1,
.sec-2,
.sec-3,
.sec-faq {
    margin-bottom: clamp(40px, 8vh, 80px);
    padding-top: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sec-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: clamp(20px, 4vh, 40px) 0;
}

.site-text h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-text p {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--textGray);
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vh, 36px);
    max-width: 540px;
}

.text-area-btn {
    display: flex;
    gap: clamp(12px, 1.5vw, 18px);
    align-items: center;
    flex-wrap: wrap;
}

.site-project-btn {
    height: clamp(46px, 5.5vh, 54px);
    padding: 0 clamp(24px, 2vw, 36px);
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    color: var(--textWhite);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(100, 64, 184, 0.3);
}

.site-project-btn:hover {
    box-shadow: 0 8px 30px rgba(100, 64, 184, 0.4);
    transform: translateY(-2px);
}

.site-explore-btn {
    height: clamp(46px, 5.5vh, 54px);
    padding: 0 clamp(24px, 2vw, 36px);
    border: 1px solid var(--borderGray);
    border-radius: 12px;
    background: transparent;
    color: var(--textGray);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.site-explore-btn:hover {
    border-color: var(--textWhite);
    color: var(--textWhite);
}

/* Site Info Card */
.site-info {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.5vw, 24px);
    background: var(--darkBg);
    border: 1px solid var(--borderGray);
    border-radius: 20px;
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.site-info .part-1 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(16px, 2vw, 24px);
    align-items: center;
}

.site-info .left h1 {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    margin-bottom: 6px;
}

.site-info .left p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--textGray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.short-texts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.short-texts h3 {
    padding: 6px 16px;
    background: rgba(100, 64, 184, 0.2);
    border: 1px solid rgba(100, 64, 184, 0.3);
    border-radius: 20px;
    font-size: clamp(11px, 0.9vw, 12px);
    font-weight: 600;
    color: var(--textWhite);
}

.exe-score {
    text-align: center;
    padding: clamp(14px, 1.5vw, 20px);
    background: rgba(100, 64, 184, 0.1);
    border-radius: 16px;
    min-width: 80px;
}

.exe-score h3 {
    font-size: clamp(11px, 0.9vw, 12px);
    color: var(--textGray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exe-score h1 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--primaryPurpleLight);
}

.ai-finder {
    padding: 12px 18px;
    background: rgba(255, 107, 122, 0.1);
    border-left: 3px solid #ff6b7a;
    border-radius: 8px;
    font-size: clamp(13px, 1.1vw, 15px);
    color: #ff6b7a;
    font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.sec-2 h1 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(40px, 5vh, 60px);
}

.work-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
}

.step-1,
.step-2,
.step-3 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.step-1 .logo-1,
.step-2 .logo-2,
.step-3 .logo-3 {
    width: clamp(56px, 6vw, 72px);
    height: clamp(56px, 6vw, 72px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 2.5vw, 32px);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(100, 64, 184, 0.3);
}

.step-1 .sub-1 h1,
.step-2 .sub-2 h1,
.step-3 .sub-3 h1 {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    margin-bottom: 6px;
}

.work-1-span,
.work-2-span,
.work-3-span {
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.step-1 .sub-1 p,
.step-2 .sub-2 p,
.step-3 .sub-3 p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--textGray);
    line-height: 1.6;
    max-width: 280px;
}

.line-1,
.line-2 {
    color: var(--textGray);
    font-size: clamp(24px, 2.5vw, 32px);
    padding-top: 40px;
    opacity: 0.3;
}

/* ============================================
   CTA SECTION
   ============================================ */
.sec-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(40px, 5vw, 60px) clamp(20px, 3vw, 40px);
    background: linear-gradient(135deg, var(--darkPurpleBg), rgba(100, 64, 184, 0.12));
    border-radius: 24px;
    border: 1px solid rgba(100, 64, 184, 0.15);
}

.site-ad h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.site-ad-span {
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-ad p {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--textGray);
    margin-bottom: 24px;
}

.site-ad-btn {
    height: clamp(46px, 5.5vh, 54px);
    padding: 0 clamp(28px, 3vw, 40px);
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primaryPurple), var(--primaryPurpleLight));
    color: var(--textWhite);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(100, 64, 184, 0.3);
}

.site-ad-btn:hover {
    box-shadow: 0 8px 30px rgba(100, 64, 184, 0.4);
    transform: translateY(-2px);
}

.site-ad small {
    display: block;
    margin-top: 14px;
    font-size: clamp(13px, 1vw, 14px);
    color: var(--textGray);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.sec-faq h1 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(40px, 5vh, 60px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2vw, 28px);
}

.faq-item {
    background: var(--darkBg);
    border: 1px solid var(--borderGray);
    border-radius: 16px;
    padding: clamp(20px, 2vw, 28px) clamp(20px, 2.5vw, 32px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primaryPurple);
}

.faq-item h3 {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--textWhite);
}

.faq-item p {
    font-size: clamp(14px, 1.1vw, 15px);
    color: var(--textGray);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
    padding: clamp(40px, 5vh, 60px) 0 clamp(24px, 3vh, 40px);
    border-top: 1px solid var(--borderGray);
    margin-top: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
}

.footer-logo img {
    height: clamp(36px, 4vw, 44px);
    width: auto;
}

.footer-short p {
    font-size: clamp(14px, 1.1vw, 15px);
    color: var(--textGray);
    margin-bottom: 18px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons button {
    width: clamp(38px, 4vw, 44px);
    height: clamp(38px, 4vw, 44px);
    border-radius: 50%;
    border: 1px solid var(--borderGray);
    background: transparent;
    color: var(--textGray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 1.3vw, 18px);
}

.footer-social-icons button:hover {
    border-color: var(--primaryPurple);
    color: var(--primaryPurple);
    background: rgba(100, 64, 184, 0.1);
}

footer h2 {
    font-size: clamp(13px, 1.1vw, 14px);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--textWhite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer a {
    display: block;
    font-size: clamp(14px, 1.1vw, 15px);
    color: var(--textGray);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

footer a:hover {
    color: var(--textWhite);
    transform: translateX(4px);
}

.footer-rights {
    text-align: right;
}

.footer-rights h2 {
    font-size: clamp(13px, 1vw, 14px);
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: none;
    color: var(--textGray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sec-1 {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .site-text p {
        max-width: 100%;
    }

    .work-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .line-1,
    .line-2 {
        display: none;
    }

    footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-rights {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 0 16px;
    }

    header {
        height: 62px;
        padding: 0 12px;
    }

    header .logo img {
        height: 34px;
    }

    header .logo span {
        font-size: 15px;
    }

    header nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .sec-1 {
        padding: 16px 0;
        gap: 30px;
    }

    .site-text h1 {
        font-size: 30px;
    }

    .site-text p {
        font-size: 15px;
    }

    .text-area-btn {
        flex-direction: column;
        width: 100%;
    }

    .site-project-btn,
    .site-explore-btn {
        width: 100%;
        justify-content: center;
    }

    .site-info .part-1 {
        grid-template-columns: 1fr;
    }

    .sec-2 h1,
    .sec-faq h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .sec-3 {
        padding: 32px 20px;
    }

    .site-ad h1 {
        font-size: 28px;
    }

    .site-ad-btn {
        width: 100%;
        justify-content: center;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0 20px;
    }

    .footer-rights {
        text-align: left;
    }

    .footer-short p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 12px;
    }

    header {
        height: 56px;
        padding: 0 10px;
    }

    header .logo img {
        height: 30px;
    }

    header .logo span {
        font-size: 13px;
    }

    .hamburger {
        font-size: 24px;
    }

    .mobile-menu {
        width: 280px;
        right: -290px;
        padding: 70px 18px 20px;
    }

    .site-text h1 {
        font-size: 26px;
    }

    .site-text p {
        font-size: 14px;
    }

    .site-project-btn,
    .site-explore-btn {
        height: 42px;
        font-size: 14px;
        padding: 0 16px;
    }

    .site-info {
        padding: 16px;
    }

    .site-info .left h1 {
        font-size: 17px;
    }

    .site-info .left p {
        font-size: 13px;
    }

    .exe-score {
        padding: 10px 14px;
        min-width: 60px;
    }

    .exe-score h1 {
        font-size: 24px;
    }

    .sec-2 h1,
    .sec-faq h1 {
        font-size: 24px;
    }

    .step-1 .logo-1,
    .step-2 .logo-2,
    .step-3 .logo-3 {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .step-1 .sub-1 h1,
    .step-2 .sub-2 h1,
    .step-3 .sub-3 h1 {
        font-size: 15px;
    }

    .step-1 .sub-1 p,
    .step-2 .sub-2 p,
    .step-3 .sub-3 p {
        font-size: 13px;
        max-width: 100%;
    }

    .sec-3 {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .site-ad h1 {
        font-size: 24px;
    }

    .site-ad p {
        font-size: 14px;
    }

    .site-ad-btn {
        height: 42px;
        font-size: 14px;
    }

    .faq-item {
        padding: 16px 18px;
    }

    .faq-item h3 {
        font-size: 14px;
    }

    .faq-item p {
        font-size: 13px;
    }

    .footer-logo img {
        height: 30px;
    }

    footer h2 {
        font-size: 12px;
    }

    footer a {
        font-size: 13px;
    }

    .footer-short p {
        font-size: 13px;
    }

    .footer-rights h2 {
        font-size: 12px;
    }

    .mobile-menu .mobile-nav-links a {
        font-size: 14px;
    }

    .mobile-menu .mobile-auth-btns button,
    .mobile-menu .mobile-user-menu button {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .site-text h1 {
        font-size: 22px;
    }

    .site-text p {
        font-size: 13px;
    }

    .site-project-btn,
    .site-explore-btn {
        height: 38px;
        font-size: 13px;
    }

    .sec-2 h1,
    .sec-faq h1 {
        font-size: 20px;
    }

    .site-ad h1 {
        font-size: 20px;
    }

    .site-ad-btn {
        height: 38px;
        font-size: 13px;
    }

    .mobile-menu {
        width: 260px;
        right: -270px;
    }
}