/* ===================================
   1. CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Spoqa Han Sans Neo', 'Spoqa Han Sans', 'SpoqaHanSansNeo',
    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

main {
    padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

.mobile_ver {
    display: none;
}

/* ===================================
   2. UTILITY CLASSES
   =================================== */
.text-highlight,
.text-mint,
.highlight {
    color: #32C8C8;
    font-weight: 700;
    word-break: keep-all;
}

/* ===================================
   3. LAYOUT CONTAINERS
   =================================== */
.section-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 260px;
}

/* ===================================
   4. HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E6E8ED;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 260px;
    height: 100%;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    min-width: 160px;
    width: 160px;
    height: 24px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Desktop Navigation */
.navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 20px;
    color: #4E5965;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: #32C8C8;
}

/* Auth Buttons */

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.auth-buttons .after-login-user,
.auth-buttons .logout-btn {
    display: none;
}
.auth-buttons.after-login .signup-btn,
.auth-buttons.after-login .login-btn {
    display: none;
}
.auth-buttons.after-login .after-login-user,
.auth-buttons.after-login .logout-btn {
    display: block;
    color: #4E5965;
    font-size: 20px;
}
.auth-buttons.after-login .after-login-user b {
    font-weight: 700;
}
.auth-buttons.after-login .logout-btn {
    margin-left: 10px;
}
      
.signup-btn,
.login-btn {
    width: 100px;
    height: 40px;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-btn {
    background: white;
    border: 1px solid #DDDDDD;
    color: #333333;
}

.signup-btn:hover {
    border-color: #32C8C8;
    color: #32C8C8;
    transform: translateY(-2px);
}

.login-btn {
    background: #32C8C8;
    color: white;
}

.login-btn:hover {
    background-color: #2AB5B5;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #4E5965;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger:nth-child(1) { top: 8px; }
.hamburger:nth-child(2) { top: 14px; }
.hamburger:nth-child(3) { top: 20px; }

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 14px;
}

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

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 14px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    width: 100%;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #E6E8ED;
}

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

.mobile-nav-link {
    display: block;
    padding: 15px 10px;
    color: #4E5965;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: #32C8C8;
    background-color: #f9f9f9;
}

.mobile-auth-buttons {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.mobile-signup-btn,
.mobile-login-btn {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.mobile-signup-btn {
    background: white;
    border: 1px solid #DDDDDD;
    color: #333333;
}

.mobile-login-btn {
    background: #32C8C8;
    color: white;
}

/* ===================================
   5. COMMON SECTION STYLES
   =================================== */
section {
    width: 100%;
    overflow: hidden;
}

.about-section,
.blog-section,
.reviewfit-section,
.experience-section,
.consumer-section,
.marketer-section {
    padding: 100px 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* Common Title Styles */
h1, h2 {
    word-break: keep-all;
}

.section-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
}

.about-title,
.blog-title,
.reviewfit-title,
.experience-title,
.consumer-title,
.marketer-title,
.review-title,
.challenge-title {
    @extend .section-title;
}

.section-subtitle {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
    text-align: center;
}

/* ===================================
   6. HERO SECTION
   =================================== */
.hero-section {
    min-height: 700px;
    padding: 50px 260px;
    background: #32C8C8;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 74px;
    flex: 1;
    min-width: 0;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.98);
    font-size: 23px;
    font-weight: 400;
    word-break: keep-all;
}

.hero-title {
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(32px, 4vw, 65px);
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
}

.hero-cta-btn {
    width: 100%;
    max-width: 300px;
    height: 50px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 5px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(8, 108, 108, 0.3);
}

/* Hero Visual Elements */
.hero-visual-wrapper {
    display: flex;
    gap: 17.81px;
    align-items: flex-start;
    flex-shrink: 0;
}

.instagram-card {
    width: 239px;
    height: 520px;
    position: relative;
    background: transparent;
    box-shadow: 0px 4.03px 20.17px #086C6C;
    border-radius: 10.09px;
    overflow: hidden;
    flex-shrink: 0;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Side Cards */
.side-cards {
    display: flex;
    flex-direction: column;
    gap: 17.81px;
}

.growth-card,
.job-type-card {
    width: 223.17px;
    padding: 17.81px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0px 4.75px 23.74px #086C6C;
    border-radius: 11.87px;
    display: flex;
    flex-direction: column;
    gap: 17.81px;
}

.growth-card {
    align-items: center;
}

.growth-title,
.job-type-title {
    color: #004848;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    word-break: keep-all;
}

.growth-chart {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 134px;
}

.chart-graph {
    position: absolute;
    width: 138px;
    height: 116px;
    top: -7px;
    right: 7px;
}

.chart-bar {
    width: 32px;
    background: #CCFAFF;
    border-radius: 4.75px;
    transition: all 0.3s ease;
}

.chart-bar:nth-child(2) { height: 30px; }
.chart-bar:nth-child(3) { height: 67px; }
.chart-bar:nth-child(4) { height: 104px; }
.chart-bar:nth-child(5) {
    height: 130px;
    background: #83F0F0;
}

.job-type-list {
    display: flex;
    flex-direction: column;
    gap: 11.87px;
}

.job-type-item {
    display: flex;
    align-items: center;
    gap: 5.94px;
    padding: 5.94px 11.87px;
    background: rgba(204, 250, 255, 0.80);
    border-radius: 5.94px;
    transition: all 0.3s ease;
}

.job-type-item:hover {
    background: #32C8C8;
    transform: translateX(5px);
}

.job-type-item:hover span {
    color: white;
}

.job-type-icon {
    width: 29.68px;
    height: 29.68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-type-icon img {
    width: 27.3px;
    height: auto;
}

.job-type-item span {
    color: #292929;
    font-size: 15.43px;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* ===================================
   7. ABOUT SECTION
   =================================== */
.about-section {
    background: white;
}

.about-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-logo {
    width: 160px;
    height: 24px;
}

.about-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
    text-align: center;
}

.about-description {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
    text-align: center;
    word-break: keep-all;
}

.about-description strong {
    font-weight: 700;
}

.about-images {
    display: flex;
    gap: 40px;
    width: 100%;
}
.about-images::-webkit-scrollbar {
    display: none;
}


.about-image-card {
    flex: 1;
    min-width: 0;
    position: relative;
    background: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===================================
   8. BLOG SECTION
   =================================== */
.blog-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(133.59, 164.75, 164.75, 0.12) 89%), white;
}

.blog-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.blog-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
}

.blog-subtitle {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
    text-align: center;
}

.blog-subtitle strong {
    font-weight: 700;
}

.blog-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blog-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.blog-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    width: 293px;
    height: 293px;
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-card-profile {
    width: 50px;
    height: 50px;
    background: #E9E9E9;
    border-radius: 6.25px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.blog-card-text h4 {
    color: #333333;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.blog-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.blog-card-tags span {
    color: #585858;
    font-size: 12px;
    font-weight: 400;
}

.blog-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 391px;
    flex-shrink: 0;
}

.blog-features img {
    width: 100%;
    height: auto;
}

/* ===================================
   9. REVIEWFIT & CONSUMER SECTIONS
   =================================== */
.reviewfit-section {
    background: #F0F4F4;
}

.reviewfit-container,
.consumer-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.reviewfit-content,
.consumer-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.reviewfit-info,
.consumer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

.reviewfit-header,
.consumer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.reviewfit-title-group,
.consumer-title-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.reviewfit-title,
.consumer-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
}

.reviewfit-subtitle,
.consumer-subtitle {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 8px 0;
}

.reviewfit-tags,
.consumer-tags {
    text-align: right;
    color: #6DCACA;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}
.consumer-tags {
    text-align: left;
    color: #6DCACA;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.reviewfit-description,
.consumer-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consumer-description {
    align-items: flex-end;
    text-align: right;
}

.reviewfit-description p,
.consumer-description p {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
}

.reviewfit-description strong,
.consumer-description strong {
    font-weight: 700;
}

.reviewfit-cta,
.consumer-cta {
    display: block;
    text-align: center;
    width: 300px;
    height: 40px;
    line-height: 40px;
    padding: 0 32px;
    background: #32C8C8;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.reviewfit-cta:hover,
.consumer-cta:hover {
    background: #2AB5B5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 200, 200, 0.3);
}

.reviewfit-dashboard {
    width: 100%;
    max-width: 767px;
    border-radius: 18.15px;
    overflow: hidden;
    border: 0.91px solid #DDDDDD;
}

.reviewfit-dashboard img {
    width: 100%;
    height: auto;
    display: block;
}

/* Phone Mockup */
.phone-mockup,
.consumer-phone {
    flex-shrink: 0;
}

.phone-frame {
    width: 372.75px;
    height: 781px;
    position: relative;
    background: #292929;
    box-shadow: 6.58px 8.77px 21.93px rgba(0, 0, 0, 0.25);
    border-radius: 59.2px;
    padding: 13.16px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50.43px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 179.8px;
    height: 32.89px;
    background: #292929;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

/* Consumer Products */
.consumer-products {
    display: flex;
    gap: 35.17px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product-card {
    flex: 1;
    background: #E9E9E9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===================================
   10. EXPERIENCE SECTION
   =================================== */
.experience-section {
    background: #F0FEFF;
}

.experience-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.experience-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.experience-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
}

.experience-subtitle {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
    text-align: center;
    word-break: keep-all;
}

.experience-subtitle strong {
    font-weight: 700;
}

.experience-categories {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 125px;
    height: 125px;
    padding: 12.5px;
    background: white;
    border: 1px solid #32C8C8;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(50, 200, 200, 0.2);
}

.category-icon img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.category-item span {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
}

.experience-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.experience-card {
    flex: 1;
    min-width: 300px;
    max-width: 327.5px;
    height: 600px;
    padding: 20px;
    background: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    /*max-width: 287.5px;*/
    /*height: 287.5px;*/
    background: #E9E9E9;
    border-radius: 20px;
    overflow: visible;
    position: relative;
}

.card-image img:first-child {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.card-icon {
    position: absolute;
    bottom: -20px;
    right: 5px;
    width: 60px;
    height: 60px;
    z-index: 5;
}

.card-content {
    flex: 1;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-badge {
    width: fit-content;
    padding: 3px 10px;
    background: #32C8C8;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.card-badge.urgent {
    background: #FA857D;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card-info h3 {
    color: #333333;
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-info p {
    color: #8C8C8C;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.status-applied {
    color: #333333;
    font-weight: 700;
}

.card-status span:nth-child(2) {
    color: #333333;
    font-weight: 400;
}

.status-total {
    color: #8C8C8C;
    font-weight: 400;
}

/* ===================================
   11. MARKETER SECTION
   =================================== */
.marketer-section {
    padding: 150px 260px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(41.81, 239.29, 239.29, 0.10) 83%), white;
}

.marketer-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.marketer-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.marketer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.marketer-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
}

.marketer-subtitle {
    color: #32C8C8;
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
}

.marketer-description {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0;
    text-align: center;
}

.marketer-description strong {
    font-weight: 700;
}

.phones-display {
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.phone-frame-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.phone-frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.platform-badge {
    width: 140px;
    padding: 5px 20px;
    background: rgba(106.94, 239.72, 239.72, 0.10);
    border: 1px solid #32C8C8;
    border-radius: 50px;
    color: #32C8C8;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* Marketer Phone Frames */
.phone-frame.black-frame,
.phone-frame.gray-frame {
    width: 360px;
    height: 754.29px;
    box-shadow: 6.35px 8.47px 21.18px rgba(0, 0, 0, 0.25);
    border-radius: 57.18px;
    position: relative;
}

.phone-frame.black-frame {
    background: #292929;
}

.phone-frame.gray-frame {
    background: #BFBFBF;
}

.gray-frame .phone-notch {
    background: #BFBFBF;
}

.phone-inner {
    position: absolute;
    top: 12.71px;
    left: 12.71px;
    right: 12.71px;
    bottom: 12.71px;
    background: white;
    border-radius: 48.71px;
    overflow: hidden;
}

.screen-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.screen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    position: absolute !important;
    z-index: 9;
    pointer-events: none;
    filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.25));
    bottom: -15px;
    right: -15px;
    width: 140px;
    height: 140px;
}

/* ===================================
   12. REVIEW SECTION
   =================================== */
.review-section {
    padding: 150px 20px;
    background: #EAFDFD;
    overflow: hidden;
    width: 100%;
}

.review-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.review-logo {
    width: 160px;
    height: 24px;
}

.review-title {
    color: #333333;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    word-break: keep-all;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 60px;
    align-items: flex-start
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 40px 40px;
}

.review-profile {
    width: 170px;
    height: 170px;
    border-radius: 100px;
    overflow: hidden;
    background: #D5D5D5;
    z-index: 10;
    position: relative;
    flex-shrink: 0;
}

.review-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 100px 40px 40px 40px;
    background: white;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 666px;
    min-height: 555px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: -85px;
}

.review-text-wrapper {
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.review-text {
    flex: 1;
    text-align: center;
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: keep-all;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.review-author-program,
.review-author-name {
    text-align: center;
    color: #333333;
    font-size: 20px;
    font-weight: 700;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-nav:hover {
    background: #32C8C8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   13. FAQ SECTION
   =================================== */
.faq_wrap {
    padding: 100px 20px;
    background: #F0F4F4;
    width: 100%;
}

.faq_wrap .inner {
    max-width: 1116px;
    margin: 0 auto;
}

.faq_wrap .title {
    font-size: 50px;
    line-height: 68px;
    color: #1C1E21;
    margin-bottom: 43px;
    text-align: center;
    word-break: keep-all;
}

.faq_list {
    list-style: none;
}

.faq_list li {
    margin-bottom: 19px;
}

.faq_list li:last-child {
    margin-bottom: 0;
}

.faq_item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.faq_question {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: keep-all;
}

.faq_item:hover .faq_question {
    background: rgba(0, 0, 0, 0.03);
}

.faq_question span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #1C1E21;
    text-align: left;
    line-height: 24px;
}

.faq_question .arrow {
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9.43359L12 15.4336L18 9.43359' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq_answer p {
    color: #696B6D;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

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

.faq_item.active .faq_question .arrow {
    transform: rotate(180deg);
}

.faq_item.active .faq_answer {
    max-height: 500px;
    padding: 20px;
}

/* ===================================
   14. CHALLENGE SECTION
   =================================== */
.challenge-section {
    padding: 100px 20px;
    background: linear-gradient(47deg, #00B2CA 0%, #32C8C8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.challenge-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.challenge-title {
    color: white;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin: 0;
    text-align: center;
    word-break: keep-all;
}

.challenge-subtitle {
    color: white;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin: 0;
    text-align: center;
}

.start-button {
    width: 100%;
    max-width: 300px;
    height: 50px;
    padding: 20px 32px;
    background: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.start-button:hover {
    background: #f0f0f0;
}

/* ===================================
   15. FOOTER
   =================================== */
.main-footer {
    width: 100%;
    padding: 50px 20px;
    background: #444444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    width: 160px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.footer-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.company-details {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: white;
    font-size: 12px;
    font-weight: 400;
}

.detail-item {
    white-space: nowrap;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-item {
    color: white;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.policy-item:hover {
    text-decoration: underline;
}

.address,
.customer-service,
.copyright {
    color: white;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

/* ===================================
   16. RESPONSIVE DESIGN
   =================================== */

/* Large Desktop (1440px) */
@media (max-width: 1440px) {
    .header-container,
    .hero-section,
    .about-section,
    .blog-section,
    .reviewfit-section,
    .experience-section,
    .consumer-section,
    .marketer-section {
        padding-left: 100px;
        padding-right: 100px;
    }

    .phone-frame-container {
        gap: 35px;
    }

    .review-card {
        flex: 0 0 600px;
        padding: 0 30px 30px;
    }

    .review-content {
        max-width: 540px;
    }
    .blog-main{
        flex-wrap: wrap;
    }
}

/* Desktop (1200px) */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .mobile_ver {
        display: block;
    }
    .header-container,
    .hero-section,
    .about-section,
    .blog-section,
    .reviewfit-section,
    .experience-section,
    .consumer-section,
    .marketer-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Typography adjustments */
    .hero-title,
    .about-title,
    .blog-title,
    .reviewfit-title,
    .experience-title,
    .consumer-title,
    .marketer-title,
    .review-title {
        font-size: 40px;
        line-height: 52px;
    }

    .hero-subtitle,
    .about-description,
    .blog-subtitle,
    .reviewfit-description p,
    .experience-subtitle,
    .consumer-description p,
    .marketer-description {
        font-size: 20px;
        line-height: 30px;
    }

    /* Layout adjustments */
    .hero-section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-container,
    .reviewfit-content,
    .consumer-content {
        flex-direction: column;
        gap: 50px;
    }

    .hero-visual-wrapper {
        justify-content: center;
        width: 100%;
        max-width: 500px;
    }
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    .hero-cta-btn {
        width: 100%;
        max-width: initial;
    }

    .blog-main {
        flex-direction: column;
        align-items: center;
    }
    .blog-cards-wrapper {
        gap: 15px;
        flex-direction: row;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;

    }
    .blog-cards-wrapper::-webkit-scrollbar {
        display: none;
    }
    .blog-cards-row {
        flex-wrap: initial;
        /*overflow-x: auto;*/
        /*flex-wrap: nowrap;*/
        /*padding-bottom: 10px;*/
    }

    .blog-cards-row::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        min-width: 300px;
        width: 300px;
        height: 300px;
    }

    .blog-features {
        width: 100%;
        max-width: 500px;
    }

    /* Phone frames */
    .phone-mockup {
        display: none;
    }
    .reviewfit-title-group {
        display: block;
    }
    .reviewfit-dashboard {
        display: none;
    }

    .phone-frame-container {
        justify-content: initial;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 53px;
        padding-right: 50px;
        flex-wrap: nowrap;
    }
    .phone-frame-container::-webkit-scrollbar {
        display: none;
    }
    .phone-frame.black-frame, .phone-frame.gray-frame {
        border-radius: 40px;
    }
    .phone-inner {
        border-radius: 25px;
    }
    .phone-frame {
        border-radius: 45px;
    }
    .phone-screen {
        border-radius: 35px;
    }

    /*.phone-frame-wrapper {*/
    /*    width: 100%;*/
    /*}*/
    /*.phone-frame-container {*/
    /*    gap: 30px;*/
    /*    flex-wrap: initial;*/
    /*    justify-content: center;*/
    /*}*/
    /*.phone-frame {*/
    /*    width: 300px;*/
    /*    height: 630px;*/
    /*}*/

    /*.phone-frame.black-frame,*/
    /*.phone-frame.gray-frame {*/
    /*    width: 300px;*/
    /*    height: 630px;*/
    /*}*/
    .floating-icon {
        width: 120px !important;
        height: 120px !important;
    }

    /* Cards */
    .about-images {
        flex-wrap: wrap;
    }

    .about-image-card {
        width: 100%;
        max-width: 500px;
    }

    .experience-cards {
        gap: 20px;
    }

    .experience-card {
        width: calc(50% - 10px);
        min-width: 280px;
    }

    .consumer-products {
        justify-content: center;
    }

    .product-card {
        width: calc(33.33% - 24px);
        min-width: 200px;
        height: 350px;
    }

    .pc_mock {
        padding: 0 20px;
    }
    .pc_mock img {
        width: 100%;
    }

    .reviewfit-description p {
        text-align: center;
    }

    .reviewfit-description a {
        margin: 0 auto;
        max-width: 670px;
        width: 100%;
    }
    .consumer-title-group {
        flex-direction: column-reverse;
    }
    .consumer-products {
        display: none;
    }
    .consumer-tags {
        margin-bottom: auto;
    }
    .consumer-cta {
        width: 100%;
    }

    .slider-track {
        gap: 40px;
    }

    .review-card {
        flex: 0 0 90vw;
        max-width: 700px;
        padding: 0 20px 20px;
    }

    .review-content {
        max-width: 100%;
        padding: 80px 30px 30px;
    }
    /*.review-text {*/
    /*    width: 100%;*/
    /*    height: 50px;*/
    /*    margin: 0 auto;*/
    /*    line-height: 1.3;*/
    /*    overflow: hidden;*/
    /*    text-overflow: ellipsis;*/
    /*    display: -webkit-box;*/
    /*    -webkit-line-clamp: 8;*/
    /*    -webkit-box-orient: vertical;*/
    /*}*/
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-section,
    .about-section,
    .blog-section,
    .reviewfit-section,
    .experience-section,
    .consumer-section,
    .marketer-section {
        padding: 60px 20px;
    }

    /* Typography */
    .hero-title,
    .about-title,
    .blog-title,
    .reviewfit-title,
    .experience-title,
    .consumer-title,
    .marketer-title,
    .review-title,
    .faq_wrap .title {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-subtitle,
    .about-description,
    .blog-subtitle,
    .reviewfit-description p,
    .experience-subtitle,
    .consumer-description p,
    .marketer-description {
        font-size: 18px;
        line-height: 26px;
    }

    /* Phone frames */
    .phone-frame {
        width: 250px;
        height: 524px;
    }

    .phone-frame.black-frame,
    .phone-frame.gray-frame {
        width: 260px;
        height: 540px;
    }

    .phone-notch {
        width: 140px;
        height: 25px;
    }

    .floating-icon {
        width: 100px !important;
        height: 100px !important;
    }

    /* Hero section */
    .hero-visual-wrapper {
        width: 100%;
        max-width: 400px;
    }

    /* about */
    .about-content {
        gap: 30px;
    }
    .about-images {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }
    .about-images::-webkit-scrollbar {
        display: none;
    }
    .about-image-card {
        border-radius: 10px;
    }

    /* Blog section */

    .blog-card-tags {
        gap: 0;
    }

    /* Experience section */
    .experience-categories {
        gap: 15px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .category-icon img {
        max-width: 60px;
        max-height: 60px;
    }

    .category-item span {
        font-size: 14px;
    }

    .experience-cards {
        align-items: center;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: initial;
        flex-direction: initial;
        justify-content: initial;
    }
    .experience-cards::-webkit-scrollbar {
        display: none;
    }


    .experience-card {
        width: 100%;
        height: 100%;
        max-width: 400px;
        min-height: 545px;
        margin: 20px 10px;
    }
    .card-info {
        flex: initial;
    }

    /* Consumer section */
    .product-card {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }

    /* Review section */
    .review-section {
        padding: 60px 15px;
    }

    .slider-track {
        gap: 20px;
    }

    .review-card {
        flex: 0 0 85vw;
        max-width: none;
    }

    .review-profile {
        width: 120px;
        height: 120px;
    }

    .review-content {
        min-height: 400px;
        padding: 70px 25px 25px;
        margin-top: -60px;
    }

    .review-text {
        font-size: 16px;
    }
    .review-profile {
        width: 120px;
        height: 120px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    /* Footer */
    .company-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-group,
    .policy-links {
        flex-direction: column;
        gap: 8px;
    }

    .challenge-title {
        font-size: 30px;
    }
    .challenge-content {
        gap: 25px;
    }
    .challenge-subtitle {
        font-size: 18px;
    }
    .start-button {
        width: 100%;
        max-width: initial;
    }
}

/* Small Mobile (500px) */
@media (max-width: 500px) {
    /* Header */
    .header {
        height: 60px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        width: 120px;
        height: 18px;
    }

    .mobile-nav {
        top: 60px;
    }

    main {
        padding-top: 60px;
    }

    /* Common sections */
    .hero-section,
    .about-section,
    .blog-section,
    .reviewfit-section,
    .experience-section,
    .consumer-section,
    .marketer-section,
    .faq_wrap {
        padding: 40px 15px;
    }

    .challenge-section {
        padding: 60px 15px;
    }

    /* Typography */
    .hero-title,
    .about-title,
    .blog-title,
    .reviewfit-title,
    .experience-title,
    .marketer-title,
    .review-title,
    .challenge-title,
    .faq_wrap .title {
        font-size: 24px;
        line-height: 32px;
    }

    .consumer-title {
        font-size: 35px;
    }
    .consumer-subtitle {
        font-size: 15px;
    }
    .consumer-title-group {
        gap: 5px;
    }
    .consumer-tags {
        font-size: 14px;
    }

    .hero-subtitle,
    .about-description,
    .blog-subtitle,
    .reviewfit-description p,
    .experience-subtitle,
    .consumer-description p,
    .marketer-description,
    .challenge-subtitle {
        font-size: 16px;
        line-height: 24px;
        word-break: keep-all;
    }

    .challenge-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-text-wrapper {
        width: 100%;
        gap: 30px;
    }

    .hero-subtitle {
        margin-top: 20px;
    }

    /* Phone frames */
    .phone-frame {
        width: 235px;
        height: 492px;
        border-radius: 40px;
        padding: 11.16px;
    }
    .phone-screen {
        border-radius: 30px;
    }

    .phone-frame.black-frame,
    .phone-frame.gray-frame {
        width: 235px;
        height: 492px;
    }

    .phone-notch {
        width: 100px;
        height: 20px;
        left: 51%;
    }

    .floating-icon {
        width: 80px !important;
        height: 80px !important;
        bottom: -10px;
        right: -10px;
    }

    /* Hero section */
    .hero-visual-wrapper {
        gap: 15px;
        width: 100%;
    }

    .instagram-card {
        flex: 1;
        width: initial;
        height: initial;
        /*width: 160px;*/
        /*height: 350px;*/
    }
    .instagram-card img {
        object-fit: contain;
    }

    .growth-card {
        width: 180px;
        padding: 12px;
        gap: 12px;
    }
    .job-type-card {
        width: 180px;
        height: 228px;
        padding: 12px;
        gap: 12px;
    }

    .growth-title,
    .job-type-title {
        font-size: 12px;
    }

    .job-type-item {
        padding: 4px 8px;
    }

    .job-type-item span {
        font-size: 12px;
    }

    .job-type-icon {
        width: 24px;
        height: 24px;
    }

    .job-type-icon img {
        width: 20px;
    }

    /* about */
    .about-images {
        flex-wrap: nowrap;
    }
    /*.about-images::-webkit-scrollbar {*/
    /*    display: none;*/
    /*}*/
    .about-image-card {
        min-width: 250px;
    }

    /* Blog section */
    .blog-card {
        min-width: 300px;
        width: 300px;
        height: 300px;
    }

    .blog-card-info {
        padding: 8px;
    }

    .blog-card-profile {
        width: 35px;
        height: 35px;
    }

    .blog-card-text h4 {
        font-size: 12px;
    }

    .blog-card-tags span {
        font-size: 10px;
    }
    .blog-features {
        margin-top: 15px;
    }

    /* Experience section */
    .card-info h3 {
        font-size: 18px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .card-info p {
        font-size: 14px;
    }

    .card-status {
        font-size: 16px;
    }
    .card-content {
        flex: initial;
        height: initial;
    }
    .experience-cards  {
        gap: 0;
    }
    .experience-card {
        min-height: 460px;
    }

    /* Consumer section */
    .reviewfit-cta,
    .consumer-cta {
        width: 100%;
        max-width: 250px;
        max-width: initial;
    }

    .phone-frame-container {
        justify-content: initial;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 53px;
        padding-right: 50px;
    }
    .phone-frame-container::-webkit-scrollbar {
        display: none;
    }
    .phone-frame.black-frame, .phone-frame.gray-frame {
        border-radius: 40px;
    }
    .phone-inner {
        border-radius: 25px;
    }


        /* Platform badge */
    .platform-badge {
        font-size: 14px;
        width: 100px;
        padding: 3px 10px;
    }

    /* Review section */
    .review-content {
        padding: 60px 20px 20px;
        min-height: 550px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-author-program,
    .review-author-name {
        font-size: 16px;
    }

    /* FAQ section */
    .faq_question span:first-child {
        font-size: 16px;
    }

    .faq_answer p {
        font-size: 14px;
    }

    /* Footer */
    .footer-logo {
        width: 100px;
        height: 15px;
    }

    .detail-item,
    .policy-item,
    .address,
    .customer-service,
    .copyright {
        font-size: 10px;
    }

    .challenge-section {
        gap: 50px;
    }
    .start-button {
        width: 100%;
        max-width: initial;
    }
    .main-footer {
        padding: 20px 15px;
    }
    .main-footer .detail-group {
        gap: 0;
    }
    .policy-links {
        flex-direction: row;
        position: relative;
        gap: 20px;
    }
    .policy-links::before {
        content: '|';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 63%;
        color: #fff;
        font-weight: 300;
    }
}

/* Very Small Mobile (360px) */
@media (max-width: 360px) {
    .hero-visual-wrapper {
        transform: scale(0.85);
        transform-origin: center;
    }

    .blog-card {
        min-width: 130px;
        width: 130px;
        height: 130px;
    }

    .experience-card {
        padding: 12px;
    }

    .card-image {
        height: 200px;
    }
}