/* CSS Variables */
:root {
    --primary-yellow: #ffc905;
    --black: #231f20;
    --text-primary: #262626;
    --white: #ffffff;
    --snow-white: #fafafa;
    --gray-light: #fbfbfb;
    --gray-border: #f2f2f2;
    --gray-soft: #d4d4d4;
    --gray-pearl: #737373;
    --green: #16A34A;
    --green-light: #E8F5E9;
    --border-radius-small: 12px;
    --border-radius-medium: 16px;
    --border-radius-large: 24px;
    --border-radius-xl: 32px;
    --shadow: 0px 37.11px 59.06px rgba(0, 0, 0, 0.05);
    --font-family: 'Open Sans', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.5;
    background-color: var(--snow-white);
}

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

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

ul {
    list-style: none;
}

/* Common Utilities */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: 0.24px;
    text-align: center;
    margin-bottom: 48px;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0px 64px 104px 0px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.08px;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #333;
}

.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.btn-cta:hover {
    background-color: #e6b500;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid #737373;
}

.btn-secondary:hover {
    background-color: var(--gray-light);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-border);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-start {
    padding: 12px 24px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-soft);
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    font-size: 14px;
}

.globe-icon {
    flex-shrink: 0;
}

.dropdown-arrow {
    flex-shrink: 0;
}

/* Hero and How It Works Wrapper */
.hero-how-it-works-wrapper {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/hero-background.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Hero Section */
.hero {
    background-color: transparent;
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: 0.24px;
    margin: 0;
}

.hero-title-brand {
    font-weight: 700;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 0.09px;
    line-height: 1.5;
    margin: 0;
}

.hero-buttons {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    white-space: nowrap;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    color: var(--text-primary);
    letter-spacing: 0.08px;
    line-height: 1.5;
    margin-top: 48px;
}

.hero-illustration {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--gray-soft) 2px, transparent 2px);
    background-size: 12px 12px;
}

.hero-dots-left {
    top: 40px;
    left: 40px;
}

.hero-dots-right {
    bottom: 40px;
    right: 40px;
}

/* How It Works Section */
.how-it-works {
    background-color: transparent;
    padding: 80px;
    position: relative;
    z-index: 1;
}

.how-it-works .section-title {
    text-align: left;
    margin-bottom: 47px;
}

.how-it-works .section-container {
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 1280px;
    margin: 0 auto;
}

.video-background {
    background: #f9f9fb;
    border: 10px solid var(--white);
    border-radius: 24px;
    box-shadow: 0px 64px 104px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f9f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    height: 16px;
    display: flex;
    align-items: center;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: visible;
    cursor: pointer;
    position: relative;
}

.progress {
    width: 28%;
    height: 100%;
    background: #262626;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    left: 28%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #262626;
    border-radius: 50%;
    cursor: pointer;
    transition: left 0.1s linear;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    opacity: 0.8;
}

.time-container {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 0.1px;
}

.time-current {
    font-weight: 600;
    min-width: 54px;
}

.time-separator {
    font-weight: 400;
}

.time-duration {
    font-weight: 400;
    min-width: 54px;
}

/* Why Nevermiss Section */
.why-nevermiss {
    background-color: var(--white);
    padding: 48px 0;
}

.why-content {
    display: flex;
    align-items: flex-start;
    gap: 96px;
}

.why-illustration {
    flex-shrink: 0;
    width: 632px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.why-text {
    flex: 1;
    min-width: 0;
}

.why-text .section-title {
    margin-bottom: 16px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bullet-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d9d9d9;
    margin-top: 4px;
}

.feature-item span:last-child {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: var(--text-primary);
}

.check-icon-green {
    flex-shrink: 0;
}

/* Why WhatsApp Section */
.why-whatsapp {
    background-color: var(--white);
    padding: 48px 0;
}

.why-whatsapp-content {
    display: flex;
    align-items: flex-start;
    gap: 96px;
}

.why-whatsapp-text {
    flex-shrink: 0;
    width: 592px;
}

.why-whatsapp-text .section-title {
    margin-bottom: 32px;
}

.why-whatsapp-text .features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-whatsapp-text .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-whatsapp-text .feature-item span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--text-primary);
}

.why-whatsapp-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-whatsapp-img {
    width: 100%;
    max-width: 592px;
    height: auto;
}

/* Nevermiss Plus Section */
.nevermiss-plus {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 249, 219, 1) 50%, rgba(255, 237, 157, 1) 100%);
}

.nevermiss-plus .section-title {
    margin-bottom: 80px;
}

.nevermiss-plus-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nevermiss-plus-illustration {
    flex-shrink: 0;
    width: 500px;
    height: 520px;
    background-color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px;
}

.nevermiss-plus-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.nevermiss-plus-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 580px;
}

.feature-row {
    display: flex;
    gap: 24px;
}

.feature-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--border-radius-small);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.08px;
    color: var(--text-primary);
}

/* Why People Love Nevermiss Section */
.why-people-love {
    background-color: var(--white);
    padding: 48px 80px;
    position: relative;
    overflow: visible;
}

.why-people-love-dots {
    position: absolute;
    left: -35px;
    top: 89px;
    width: 205px;
    height: 180px;
    background-image: radial-gradient(circle, #d9d9d9 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.6;
    z-index: 0;
}

.why-people-love-content {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    position: relative;
}

.why-people-love-title {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    margin-left: -40px;
}

.why-people-love-title h2 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08px;
    color: var(--text-primary);
}

.why-people-love-title h2 strong {
    font-weight: 700;
}

.why-people-love-card {
    flex: 1;
    min-width: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0px 37px 59px rgba(0, 0, 0, 0.05);
}

.love-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.love-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.love-feature-item .check-icon-green {
    flex-shrink: 0;
    margin-top: 2px;
}

.love-feature-item span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--text-primary);
}

/* Your Day Message Section */
.your-day-message {
    background-color: #fbfbfb;
    padding: 48px 80px;
}

.your-day-content {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.your-day-phone {
    flex-shrink: 0;
    width: 530px;
}

.your-day-phone-img {
    width: 100%;
    height: auto;
}

.your-day-text {
    flex-shrink: 0;
    width: 592px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.your-day-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.24px;
    color: var(--black);
}

.your-day-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing {
    background-color: var(--black);
    padding: 120px 80px;
    position: relative;
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.pricing-card {
    display: flex;
    gap: 32px;
    padding: 48px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
}

.pricing-free {
    background-color: var(--white);
}

.pricing-plus {
    background-color: var(--primary-yellow);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.12px;
    min-width: 200px;
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-feature span {
    font-size: 16px;
    line-height: 1.5;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    margin: 48px 0;
}

.pricing-info {
    color: var(--white);
    margin-bottom: 32px;
}

.pricing-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.12px;
}

.pricing-info p {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.pricing-table {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    margin-bottom: 24px;
    padding: 0 48px;
}

.pricing-table-header {
    display: flex;
    padding: 24px;
    border-bottom: 1px solid #dedede;
}

.pricing-table-header .table-col {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.1px;
}

.pricing-table-row {
    display: flex;
    border-bottom: 1px solid #dedede;
}

.pricing-table-row.no-border {
    border-bottom: none;
}

.table-col {
    flex: 1;
    padding: 24px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

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

.flag {
    font-size: 20px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.info-icon {
    flex-shrink: 0;
}

/* Trust & Privacy Section */
.trust-privacy {
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
    padding: 48px 80px;
}

.trust-privacy-content {
    display: flex;
    align-items: flex-start;
    gap: 77px;
}

.trust-privacy-text {
    flex-shrink: 0;
    width: 592px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-privacy-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.24px;
    color: var(--text-primary);
}

.trust-privacy-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--text-primary);
}

.trust-privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-privacy-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-privacy-item span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--text-primary);
}

.trust-privacy-illustration {
    flex: 1;
    min-width: 0;
}

.trust-privacy-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* FAQ Section */
.faq {
    background-color: var(--gray-light);
    padding: 80px;
}

.faq .section-title {
    text-align: left;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.09px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.faq-answer {
    display: none;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.09px;
    color: var(--text-primary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon line:first-of-type {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 80px;
    border-top: 1px solid var(--gray-soft);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.footer-brand h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: 0.16px;
}

.footer-brand p {
    font-size: 32px;
    color: var(--white);
    line-height: 1.4;
}

.footer-buttons {
    display: flex;
    gap: 16px;
}

.footer-divider {
    height: 1px;
    background-color: #6d6e70;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-email {
    font-size: 20px;
    color: var(--white);
    line-height: 1.5;
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 20px;
    color: var(--white);
    text-decoration: underline;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 20px;
    color: var(--white);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-container,
    .navbar-container,
    .hero-container {
        padding: 0 40px;
    }
    
    .pricing {
        padding: 80px 40px;
    }
    
    .faq {
        padding: 80px 40px;
    }
    
    .footer {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .why-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .why-illustration {
        width: 100%;
        max-width: 632px;
    }
    
    .why-text {
        text-align: center;
    }
    
    .section-title.text-left {
        text-align: center;
    }
    
    .features-list {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .why-whatsapp-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .why-whatsapp-text {
        width: 100%;
        text-align: center;
    }
    
    .why-whatsapp-text .feature-item {
        justify-content: center;
    }
    
    .why-whatsapp-illustration {
        width: 100%;
    }
    
    .nevermiss-plus-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .nevermiss-plus-illustration {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 350px;
    }
    
    .nevermiss-plus-features {
        min-width: unset;
        width: 100%;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-card {
        min-width: unset;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-container,
    .navbar-container,
    .hero-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .navbar-right {
        gap: 8px;
    }
    
    .btn-start {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .why-people-love {
        padding: 60px 20px;
    }
    
    .why-people-love-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .why-people-love-title h2 {
        font-size: 36px;
    }
    
    .why-people-love-card {
        padding: 24px;
    }
    
    .love-feature-item span {
        font-size: 16px;
    }
    
    .why-people-love-dots {
        display: none;
    }
    
    .your-day-message {
        padding: 60px 20px;
    }
    
    .your-day-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .your-day-phone {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .your-day-text {
        width: 100%;
        gap: 24px;
    }
    
    .your-day-title {
        font-size: 32px;
    }
    
    .your-day-description {
        font-size: 16px;
    }
    
    .trust-privacy {
        padding: 60px 20px;
    }
    
    .trust-privacy-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .trust-privacy-text {
        width: 100%;
    }
    
    .trust-privacy-title {
        font-size: 32px;
    }
    
    .trust-privacy-description {
        font-size: 16px;
    }
    
    .trust-privacy-item span {
        font-size: 16px;
    }
    
    .pricing {
        padding: 60px 20px;
    }
    
    .pricing-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .pricing-table {
        padding: 0 16px;
        overflow-x: auto;
    }
    
    .pricing-table-header,
    .pricing-table-row {
        min-width: 600px;
    }
    
    .table-col {
        padding: 16px 12px;
        font-size: 16px;
    }
    
    .faq {
        padding: 60px 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 24px 20px;
    }
    
    .faq-answer p {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .footer-brand h2,
    .footer-brand p {
        font-size: 24px;
    }
    
    .footer-links a,
    .contact-email,
    .footer-copyright {
        font-size: 16px;
    }
    
    .why-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .language-selector {
        padding: 6px 12px;
    }
    
    .language-selector span {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .pricing-info h3 {
        font-size: 20px;
    }
    
    .pricing-info p {
        font-size: 16px;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 80px 0 120px;
    min-height: calc(100vh - 200px);
    background-color: var(--white);
}

.policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.policy-header {
    margin-bottom: 48px;
}

.policy-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin-bottom: 32px;
}

.policy-date {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.5;
}

.policy-intro {
    margin-bottom: 48px;
}

.policy-intro p {
    font-size: 20px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 0;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.policy-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.policy-section-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-section-content p {
    font-size: 20px;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.policy-section-content ul,
.policy-section-content ol {
    list-style-position: inside;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-section-content ul {
    list-style-type: disc;
}

.policy-section-content ol {
    list-style-type: decimal;
}

.policy-section-content li {
    font-size: 20px;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.policy-section-content li ul {
    margin-top: 8px;
}

.policy-section-content strong {
    font-weight: 600;
}

.policy-link {
    color: var(--text-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--primary-yellow);
}

/* Responsive Policy Pages */
@media (max-width: 1024px) {
    .policy-container {
        padding: 0 40px;
    }
    
    .policy-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .policy-page {
        padding: 60px 0 80px;
    }
    
    .policy-container {
        padding: 0 20px;
    }
    
    .policy-title {
        font-size: 32px;
    }
    
    .policy-date,
    .policy-intro p,
    .policy-section-content p,
    .policy-section-content li {
        font-size: 18px;
    }
    
    .policy-section-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 28px;
    }
    
    .policy-date,
    .policy-intro p,
    .policy-section-content p,
    .policy-section-content li {
        font-size: 16px;
    }
    
    .policy-section-title {
        font-size: 16px;
    }
    
    .policy-section-content ul,
    .policy-section-content ol {
        padding-left: 20px;
    }
}

/* QR Code Modal */
.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qr-modal {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.qr-modal-overlay.active .qr-modal {
    transform: scale(1);
}

.qr-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background-color: var(--gray-light);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--dark);
    transition: background-color 0.2s ease;
}

.qr-modal-close:hover {
    background-color: #e0e0e0;
}

.qr-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.qr-modal-image {
    max-width: 100%;
    width: 250px;
    height: auto;
    border-radius: 8px;
}
