/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
.header {
    background: #000;
    color: #fff;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    width: 98vw;
    margin: 0;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.tiktok-icon {
    font-size: 20px;
}

.tiktok-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 16px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.8;
}

.login-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn:hover {
    background: #fff;
    color: #000;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-flag {
    font-size: 16px;
}

.lang-text {
    font-size: 14px;
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.language-switcher.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 9999;
    pointer-events: none;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}



.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Main Content */
.main-content {
    display: flex;
    min-height: 100vh;
    margin-top: 64px;
    position: relative;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* Left Section */
.left-section {
    /* background: #000; */
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow: hidden;
    width: 50%;
    max-width: 600px;
    z-index: 1;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff0050, #ff6b9d);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #00d4aa, #00b8d4);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff0050, #ff6b9d);
    top: 50%;
    left: 20%;
}

.left-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: #ff0050;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Right Section */
.right-section {
    width: 50%;
    max-width: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    z-index: 1;
}

.form-container {
    width: 100%;
    /* max-width: 400px; */
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 32px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
}

.country-icon {
    font-size: 16px;
}

.switch-country {
    color: #ff0050;
    text-decoration: none;
    margin-left: auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.login-prompt {
    font-size: 14px;
    color: #666;
}

.login-link {
    color: #ff0050;
    text-decoration: none;
    margin-left: 4px;
}

/* Form */
.signup-form {
    width: 100%;
}

/* Gender selection styling */
.form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.gender-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.radio-input:checked {
    border-color: #ff0050;
    background: #fff;
}

.radio-input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff0050;
}

.radio-input:hover {
    border-color: #ff0050;
}

.radio-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    font-weight: 400;
    user-select: none;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}



.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.required-mark {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff0050;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}



.form-input:focus {
    outline: none;
    border-color: #ff0050;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.1);
}

/* Select input styling */
select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-input option {
    padding: 8px;
}

.form-input::placeholder {
    color: #999;
}

/* Validation messages */
.validation-message {
    margin-top: 6px;
    font-size: 11px;
    min-height: 14px;
}

.validation-message.info {
    color: #666;
}

.validation-message.error {
    color: #dc3545;
}

.validation-message.success {
    color: #28a745;
}

/* Input validation states */
.form-input.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-input.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.checking {
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* Email specific validation states */
.form-input.email-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-input.email-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.email-checking {
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* Phone input container */
.phone-input-container {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.country-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    min-width: 140px;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    cursor: pointer;
}

/* .country-selector-wrapper:hover {
    border-color: #ff0050;
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.15);
    transform: translateY(-2px);
} */

/* .country-selector-wrapper:focus-within {
    border-color: #ff0050;
    box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.1);
    transform: translateY(-2px);
} */

/* .country-selector-wrapper:focus-within .country-code-text {
    color: #ff0050;
    transform: scale(1.05);
} */

.country-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    border-radius: 12px 0 0 12px;
    min-width: 60px;
    /* border-right: 1px solid #e9ecef; */
    position: relative;
    overflow: hidden;
}

.country-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.country-selector-wrapper:hover .country-flag::before {
    transform: translateX(100%);
}

.country-flag img {
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-code-display {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    /* background: #fff; */
    flex: 1;
    min-width: 60px;
}

.country-code-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-selector-wrapper:hover .country-code-text {
    color: #ff0050;
    transform: scale(1.05);
}

/* Country Dropdown Styles */
.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999999999;
    /* opacity: 0; */
    visibility: hidden;
    /* display: none; */
    transform: translateY(-10px);
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    max-height: 280px;
    overflow: hidden;
    margin-top: 8px;
}

.country-dropdown.show {
    /* opacity: 1; */
    visibility: visible;
    /* display: block; */
    transform: translateY(0);
}

.country-search-container {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.country-search {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.country-search:focus {
    border-color: #ff0050;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 0, 80, 0.1);
}

.country-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 8px 0;
}

.country-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.country-item:hover {
    background-color: #f8f9fa;
}

.country-item.selected {
    background-color: #fff5f7;
    color: #ff0050;
}

.country-item-flag {
    margin-right: 12px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-item-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

.country-item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-item-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.country-item-code {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.country-item:hover .country-item-name {
    color: #ff0050;
}

.country-item:hover .country-item-code {
    color: #ff0050;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-selector-wrapper:hover .select-arrow {
    color: #ff0050;
}

.country-selector-wrapper:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #ff0050;
}

.phone-number-input {
    flex: 1;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.phone-number-input:hover {
    border-color: #ff0050 !important;
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.1);
}

.phone-number-input:focus {
    border-color: #ff0050 !important;
    box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.1);
    outline: none;
}

.phone-input-container:focus-within .country-selector-wrapper {
    border-color: #ff0050;
    box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.1);
}

/* Form buttons */
.form-buttons {
    margin-bottom: 20px;
}

.signup-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.signup-btn.primary {
    background: #ff0050;
    color: #fff;
}

.signup-btn.primary:hover {
    background: #e6004c;
}

.signup-btn.secondary {
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signup-btn.secondary:hover {
    background: #e8e8e8;
}

/* Terms text */
.terms-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.affiliate-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.link {
    color: #ff0050;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Commerce Solutions Section */
.commerce-solutions {
    background: #141414;
    color: #fff;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.solution-card {
    text-align: center;
}

.phone-mockup {
    width: 300px;
    height: 500px;
    margin: 0 auto 24px;
    position: relative;
    border: none;
    outline: none;
    background: transparent;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: none;
    outline: none;
    background: transparent;
}

.solution-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* 确保所有视频元素都没有边框 */
video {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.live-stream-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: linear-gradient(45deg, #ff0050, #ff6b9d);
    color: #fff;
}

.streamers {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.streamer {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.product-info {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.brand {
    font-weight: 600;
    margin-bottom: 4px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #ff0050;
    margin-bottom: 8px;
}

.buy-btn {
    background: #ff0050;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.chat {
    font-size: 12px;
    opacity: 0.8;
    margin-top: auto;
}

.video-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #f8f8f8;
}

.video-player {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.action {
    font-size: 20px;
    cursor: pointer;
}

.product-tag {
    background: #ff0050;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.store-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #fff;
}

.store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.store-name {
    font-weight: 600;
    font-size: 14px;
}

.store-stats {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.follow-btn {
    background: #ff0050;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.product {
    background: #f5f5f5;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.solution-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Seller Story Section */
.seller-story {
    background: #fff;
    padding: 80px 0;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.story-carousel {
    position: relative;
    margin-bottom: 40px;
    height: 400px;
    overflow: hidden;
}

.story-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(100%);
}

.story-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.story-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.weebass-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.fishing-lures {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    transform: rotate(-5deg);
}

.brand-tagline {
    font-size: 14px;
    opacity: 0.9;
}

.story-content {
    display: flex;
    flex-direction: column;
}

.story-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.seller-avatar {
    width: 48px;
    height: 48px;
    background: #ff0050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.seller-name {
    font-weight: 600;
    font-size: 16px;
}

.seller-type {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.performance-metrics {
    display: flex;
    gap: 32px;
    margin-top: auto;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #ff0050;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.story-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
}

.nav-arrow:hover:not(.disabled) {
    color: #ff0050;
}

.nav-arrow.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.story-counter {
    font-size: 16px;
    color: #666;
}

/* Business Start Section */
.business-start {
    background: #fef7f7;
    padding: 80px 0;
}

.start-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.start-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.start-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
}

.before-start {
    background: #e3f2fd;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.before-start h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1976d2;
}

.before-start p {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.view-details {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.view-details:hover {
    text-decoration: underline;
}

.open-store-btn {
    background: #ff0050;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.open-store-btn:hover {
    background: #e6004c;
}

.steps-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.steps-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f8f8;
    cursor: pointer;
    transition: background 0.2s;
}

.step-header:hover {
    background: #f0f0f0;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #ff0050;
    margin-right: 12px;
}

.step-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.step-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.step-content {
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
    display: none;
}

.step-item.expanded .step-content {
    display: block;
}

.step-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 12px;
}

.step-time {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #f8f8f8;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-header:hover {
    background: #f0f0f0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin: 0;
}

.faq-arrow {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.faq-item.expanded .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.faq-answer ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

.faq-link {
    color: #0066cc;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        max-width: none;
        padding: 60px 40px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .start-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .logo-section {
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .header-actions {
        gap: 16px;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        max-width: none;
        padding: 40px 24px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .main-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .performance-metrics {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Mobile phone input styles */
    .phone-input-container {
        flex-direction: column;
        gap: 16px;
    }

    .country-selector-wrapper {
        min-width: 100%;
        order: 1;
        height: 56px;
    }

    .country-flag {
        padding: 16px 20px;
        min-width: 80px;
    }

    .country-code-display {
        padding: 16px 20px;
        min-width: 80px;
    }

    .country-code-text {
        font-size: 18px;
    }

    .phone-number-input {
        order: 2;
        height: 56px;
        font-size: 18px;
    }
} 