/* Reset and Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0a0d12;
    background-color: #ffffff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    margin-top: 100px;
    background: linear-gradient(45deg, rgba(255,221,85,1) 0%, rgba(255,84,62,1) 50%, rgba(200,55,171,1) 100%);
    padding-top: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1274px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: white !important;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-button {
    width: 100%;
    height: 46px;
    background: #0a0d12;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #1a1d22;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 536px;
}

.phone-mockup {
    position: relative;
    width: 574px;
    height: 536px;
    transform: rotate(180deg);
}

.main-image {
    position: absolute;
    width: 457px;
    height: 514px;
    top: 0;
    left: 0;
    object-fit: cover;
}

.interaction-bar {
    position: absolute;
    width: 401px;
    height: 68px;
    top: 468px;
    left: 139px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 10px 30px 10px rgba(66, 105, 149, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transform: rotate(180deg);
}

.interaction-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-icon {
    position: relative;
}

.package-card {
    position: absolute;
    width: 264px;
    height: 245px;
    top: 192px;
    left: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 10px 30px 10px rgba(66, 105, 149, 0.05);
    padding: 46px 39px;
    transform: rotate(180deg);
}

.package-title {
    width: 162px;
    height: 19px;
    margin: 0 auto 39px;
    display: block;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.package-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 8px;
}

.package-arrow {
    width: 27px;
    height: 18px;
    background: url('public/frame-7044.svg') no-repeat center;
    background-size: contain;
}

.package-divider {
    width: 100%;
    height: 1px;
    background: url('public/line-25.svg') no-repeat center;
    background-size: cover;
}

/* Benefits Section */
.benefits-section {
    padding: 50px 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    height: 732px;
    width: 561px;
}

.main-benefit-image {
    position: absolute;
    width: 489px;
    height: 685px;
    top: 0;
    right: 0;
    object-fit: cover;
}

.engagement-card {
    position: absolute;
    width: 401px;
    height: 91px;
    bottom: 47px;
    left: 43px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 10px 30px 10px rgba(66, 105, 149, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.engagement-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-group {
    position: relative;
}

.likes-card {
    position: absolute;
    width: 240px;
    height: 86px;
    top: 382px;
    left: 0;
    background: black;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.2);
    padding: 14px 23px;
}

.likes-content {
    position: relative;
    width: 195px;
    height: 59px;
}

.likes-content img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
}

.likes-content img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
}

.likes-content img:nth-child(3) {
    position: absolute;
    top: 14px;
    right: 0;
}

.decorative-element {
    position: absolute;
    top: 487px;
    left: 16px;
}

.benefits-text {
    flex: 1;
    max-width: 600px;
}

.benefits-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
    margin-bottom: 20px;
}

.benefits-intro {
    font-size: 16px;
    color: #606060;
    line-height: 1.5;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #d3c3c3;
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.benefit-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
    margin: 0;
}

.benefit-item p {
    font-size: 16px;
    color: #606060;
    line-height: 1.5;
}

/* How To Section */
.how-to-section {
    padding: 0;
}

.how-to-card {
    max-width: 1440px;
    margin: 0 auto;
    background: #f4f8fb;
    border-radius: 20px;
    padding: 50px;
}

.how-to-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-to-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a0d12 !important;
    line-height: 1.2;
    margin-bottom: 30px;
}

.how-to-header p {
    font-size: 16px;
    color: #606060 !important;
    line-height: 1.5;
    max-width: 1040px;
    margin: 0 auto;
}

.steps-container {
    position: relative;
    max-width: 1242px;
    margin: 0 auto;
    text-align: center;
}

.steps-container img {
    width: 72%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.steps-container .mobile-variations img {
    width: fit-content;
}

.steps-connector {
    display: block;
    margin: 0 auto 37px;
    width: 915px;
    height: 30px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(45deg, rgba(255,221,85,1) 0%, rgba(255,84,62,1) 50%, rgba(200,55,171,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4.2px;
    margin-bottom: 22px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0d12 !important;
    line-height: 1.2;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #0a0d12 !important;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
    margin-bottom: 30px;
}

.faq-header p {
    font-size: 16px;
    color: #606060;
    line-height: 1.5;
}

.faq-list {
    max-width: 1007px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #beb5b5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 20px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #606060;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 15px 30px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 16px;
    color: #606060;
    line-height: 1.5;
}

/* Related Tools Section */
.related-tools-section {
    padding: 0 0 100px 0;
    background: white;
}

.related-tools-card {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,76,53,1) 0%, rgba(255,150,95,1) 100%);
    border-radius: 20px;
    padding: 100px 50px;
}

.tools-section,
.services-section {
    margin-bottom: 50px;
}

.services-section {
    margin-bottom: 0;
}

.tools-section h2,
.services-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 804px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tool-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tool-button span {
    font-size: 14px;
    font-weight: 700;
    color: #fb5343;
}

.tool-arrow {
    width: 27px;
    height: 18px;
    background: url('public/frame-7044.svg') no-repeat center;
    background-size: contain;
}

.tiktok-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

/* Footer */
.footer {
    background: transparent;
}

.footer-main {
    background: #f4f8fb;
    padding: 56px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-select {
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #606060;
    border-radius: 5px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #757575;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
    margin-bottom: 20px;
}

.links-columns {
    display: flex;
    justify-content: space-between;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.links-column a {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    text-decoration: none;
    line-height: 1.75;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: #0a0d12;
}

.footer-right h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0d12;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    line-height: 1.75;
}

.footer-bottom {
    background: #f4f8fb;
    border-top: 1px solid #dbdbdb;
    padding: 29px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    line-height: 1.2;
}

.badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    padding: 3px;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.badge.dmca {
    background: #9e9fa3;
}

.badge.protected {
    background: #0d0d0d;
}

.same-tools {
    display: flex;
    padding: 0 100px 50px 100px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.same-tools .content {
    display: flex;
    max-width: 1440px;
    padding: 60px 50px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    flex: 1 0 0;
    border-radius: 20px;
    background: var(--GA-BG, linear-gradient(135deg, #FF4C35 0%, #FF965F 100%));
}

.same-tools .related-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.same-tools .related-tools .heading {
    display: flex;
    width: 1040px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.same-tools .heading .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.same-tools .heading h2 {
    width: 804px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 0;
}

.same-tools .related-tools .tools {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.related-tools .tools .tool {
    display: flex;
    width: 317px;
    padding: 10px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 2px solid #000;
    background: #FFF;
}

.tool .text-side {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
}

.tool .text-side img {
    width: 24px;
    height: 24px;
}

.tool h3 {
    color: #FB5343 !important;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.tool img {
    width: 27px;
    flex-shrink: 0;
    align-self: stretch;
}

.faq-description {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 28px;
}

@media screen and (min-width: 1240px) and (max-width: 1597px)  {
    .same-tools .related-tools .tools {
        flex-wrap: unset;
    }

    .related-tools .tools .tool {
        width: fit-content;
    }
}


@media screen and (min-width: 1041px) and (max-width: 1239px)  {
    .same-tools .content {
        max-width: 95%;
        padding: 100px 50px;
    }

    .same-tools .related-tools .heading {
        width: 90%;
    }

    .same-tools .heading h2 {
        width: 100%;
        font-size: 34px;
    }

    .related-tools .tools {
        justify-content: space-around;
    }

    .related-tools .tools .tool {
        width: 300px;
        padding: 10px;
    }

    .tool h3 {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content,
    .benefits-content {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-item {
        font-size: 14px;
    }

    .benefits-intro, .benefit-item p {
        font-size: 14px;
    }

    .benefit-header h3 {
        font-size: 18px;
    }
}

.mobile-variations { display: none; }
.desktop-variations { display: flex; }

@media screen and (max-width: 1040px)  {
    .mobile-variations { 
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .desktop-variations { display: none; }

    .same-tools {
        padding: 50px 20px;
        margin-bottom: 30px;
        background: var(--GA-BG, linear-gradient(135deg, #FF4C35 0%, #FF965F 100%));
    }

    .same-tools .content {
        max-width: 100%;
        padding: 0;
        gap: 30px;
    }

    .same-tools .related-tools {
        width: 100%;
    }

    .same-tools .related-tools .heading {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .same-tools .related-tools .heading h2 {
        width: 100%;
    }

    .same-tools .heading .text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .same-tools .heading h2 {
        font-size: 24px;
    }

    .same-tools .related-tools .tools {
        display: flex;
        flex-direction: column;
    }

    .related-tools .tools .tool {
        width: fit-content;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content,
    .benefits-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text h1,
    .benefits-text h2,
    .how-to-header h2,
    .faq-header h2,
    .tools-section h2,
    .services-section h2 {
        font-size: 28px;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .steps-connector {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .tools-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .how-to-card,
    .related-tools-card {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .benefits-section,
    .how-to-section {
        padding: 30px 0;
    }
    
    .hero-text h1,
    .benefits-text h2,
    .how-to-header h2,
    .faq-header h2,
    .tools-section h2,
    .services-section h2 {
        text-align: center;
        font-size: 24px;
    }

    .benefits-intro {
        text-align: center;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .phone-mockup {
        width: 100%;
        height: auto;
        transform: none;
    }
    
    .main-image {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .interaction-bar,
    .package-card {
        display: none;
    }
    
    .image-container {
        height: auto;
        width: 100%;
    }
    
    .main-benefit-image {
        position: relative;
        width: 100%;
        height: auto;
        right: auto;
    }
    
    .engagement-card,
    .likes-card,
    .decorative-element {
        display: none;
    }
}
