:root {
    --primary-color: #fe2049;
    --gradient-start: #fe2f27;
    --gradient-end: #e81671;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
    border: 2px solid transparent;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a.colored {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

ul,
ol {
    list-style: none;
}

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

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 22px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, rgba(254, 47, 39, 0.03) 0%, rgba(232, 22, 113, 0.03) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-disclaimer {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-light);
}

/* === CTA BUTTON === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(254, 32, 73, 0.3);
    transition: var(--transition);
}

.header .cta-button {
    padding: 10px 25px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(254, 32, 73, 0.4);
}

.cta-button img {
    height: 40px;
}

.hero-content .cta-button {
    padding: 10px 25px;
    font-size: 20px;
}

.nav .cta-button {
    transform-origin: center;
    will-change: transform;
    animation: jelly-chaos 7.8s infinite;
    animation-duration: 8.9s;
    animation-timing-function: cubic-bezier(.2, .9, .2, 1);
}

.nav .cta-button:hover {
    animation-duration: 5.2s;
}

@media (prefers-reduced-motion: reduce) {
    .nav .cta-button:hover {
        animation: none;
    }
}

@keyframes jelly-chaos {

    0%,
    58% {
        transform: translateZ(0) scale(1);
    }

    60% {
        transform: scale(1.03, 0.97);
    }

    63% {
        transform: scale(0.97, 1.04);
    }

    66% {
        transform: scale(1.02, 0.98);
    }

    69% {
        transform: scale(0.99, 1.01);
    }

    72% {
        transform: scale(1.01, 0.99);
    }

    76% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* === ABOUT SERVICE === */
.about-service {
    background: var(--bg-light);
}

/* === FEATURES === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 128px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* === SECURITY === */
.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-list {
    margin-top: 24px;
}

.security-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-gray);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background: var(--bg-light);
}

/* === DISCLAIMER === */
.disclaimer {
    background: var(--bg-light);
    padding: 60px 0;
}

.disclaimer-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* === FOOTER === */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo img {
    height: 22px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-nav h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.footer-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    margin-top: 8px;
    transition: var(--transition);
}

.footer-button:hover {
    background: var(--gradient-end);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 500px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-accept:hover {
    background: var(--gradient-end);
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
}

.modal-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 28px;
}

.modal-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    transition: var(--transition);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(254, 32, 73, 0.4);
}

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

/* === PAGE HEADER === */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(254, 47, 39, 0.03) 0%, rgba(232, 22, 113, 0.03) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    color: var(--text-dark);
    word-break: break-word;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

/* === ABOUT PAGE === */
.content-section {
    padding: 80px 0;
}

.content-article {
    max-width: 900px;
    margin: 0 auto 60px;
}

.content-article h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-article p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.philosophy-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.philosophy-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.philosophy-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cities-item {
    background: var(--bg-light);
    padding: 13px 16px;
    border-radius: 12px;
}

.cities-item a {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.styled-list {
    margin: 24px 0;
    padding-left: 0;
}

.styled-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

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

.privacy-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.privacy-icon img {
    width: 128px;
}

.privacy-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.privacy-feature p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.principle-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    padding-top: 60px;
}

.principle-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(254, 32, 73, 0.1);
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.principle-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-box {
    margin-top: 40px;
    text-align: center;
}

/* === BLOG PAGE === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(254, 32, 73, 0.1);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

/* === PAGINATION === */
.pagination {
    margin-top: 60px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.pagination-item a:hover,
.pagination-item.active a {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-cta {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.blog-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* === ARTICLE PAGE === */
.breadcrumbs {
    padding: 24px;
    max-width: 1000px;
}

.breadcrumbs ol {
    display: flex;
    gap: 6px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumbs ol li {
    display: flex;
}

.breadcrumbs li:not(:last-child)::after {
    content: '→';
    margin-left: 12px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-gray);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.article-header {
    margin: 0 auto 60px;
    max-width: 1000px;
}

.article-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: block;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.article-lead {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.article-hero-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 60px;
}

.article-content {
    margin: 0 auto;
    max-width: 1000px;
}

.article-content a {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.article-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.article-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.article-section p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-section ul,
.article-section ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-section li {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.article-section ul li {
    list-style: disc;
}

.article-section ol li {
    list-style: decimal;
}

.info-block,
.warning-block,
.highlight-block {
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
}

.info-block {
    background: rgba(254, 32, 73, 0.05);
    border-left: 4px solid var(--primary-color);
}

.warning-block {
    background: rgba(255, 152, 0, 0.05);
    border-left: 4px solid #ff9800;
}

.highlight-block {
    background: var(--bg-light);
    border-left: 4px solid #4caf50;
}

.info-block h3,
.warning-block h3,
.highlight-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    margin-top: 0;
}

.info-block p,
.warning-block p,
.highlight-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.info-block ul,
.warning-block ul {
    margin-top: 16px;
    padding-left: 0;
}

.info-block li,
.warning-block li {
    list-style: none;
    padding-left: 0;
}

.article-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    padding: 32px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    margin: 40px 0;
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.feature-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.tips-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tips-table thead {
    background: var(--bg-light);
}

.tips-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.tips-table td {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.article-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.article-cta h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 18px;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: #fff;
}

.article-cta .cta-button {
    background: white;
    color: var(--primary-color);
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 800;
    align-items: center;
    -webkit-text-fill-color: unset;
}

.article-cta .cta-button img {
    height: 38px;
}

.article-cta .cta-button:hover {
    background: var(--bg-light);
}

.article-section .img-fluid {
    border-radius: 16px;
}

.related-articles {
    padding: 80px 0;
}

.related-articles h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* === FAQ PAGE === */
.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

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

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer>div {
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.faq-answer ul,
.faq-answer ol {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul li {
    list-style: disc;
}

.faq-answer ol li {
    list-style: decimal;
}

.faq-cta {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.faq-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* === TERMS PAGE === */
.terms-date {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.terms-content {
    padding: 80px 0;
}

.terms-article {
    max-width: 900px;
    margin: 0 auto;
}

.terms-article h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
    color: var(--text-dark);
}

.terms-article h2:first-child {
    margin-top: 0;
}

.terms-article h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.terms-article p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-article ul,
.terms-article ol {
    margin: 24px 0;
    padding-left: 24px;
}

.terms-article li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-article ul li {
    list-style: disc;
}

.terms-article ol li {
    list-style: decimal;
}

.terms-notice {
    background: rgba(254, 32, 73, 0.05);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 48px;
}

.terms-notice h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.terms-notice p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {

    .hero .container,
    .security-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-image {
        order: 1;
    }

    .hero {
        padding: 0 0 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .feature-icon {
        display: flex;
        justify-content: center;
    }

    .feature-icon img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .header .cta-button {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 36px;
    }

    .article-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .modal {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 15px;
    }

    .article-cta .cta-button {
        flex-direction: column;
    }
}

.reviews-section .container {
    max-width: 1500px !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #ffc107;
    font-size: 18px;
}

.star.empty {
    color: #e0e0e0;
}

.review-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 600;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    width: fit-content;
}

.review-moderation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #e1a742;
    font-weight: 600;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(225, 167, 66, 0.1);
    border-radius: 20px;
    width: fit-content;
}

.reviews-more {
    text-align: center;
    margin: 60px 0;
}

.reviews-more-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-gray);
}

.review-form-section {
    background: var(--bg-light);
    padding: 80px 0;
    margin-top: 60px;
}

.review-form-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.review-form-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 48px;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-input {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 32px;
    color: #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input label:hover,
.rating-input label:hover~label,
.rating-input input:checked~label {
    color: #ffc107;
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(254, 32, 73, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-content-section {
    padding: 80px 0;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.seo-content-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content-text ul {
    margin: 24px 0;
    padding-left: 0;
}

.seo-content-text li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.seo-content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.seo-content-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .review-form {
        padding: 28px 24px;
    }

    .review-form-title {
        font-size: 28px;
    }

    .seo-content-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }
}