@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #4F46E5;
    --primary-light: #6366F1;
    --secondary: #8B5CF6;
    --accent: #F43F5E;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    --bg-main: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 1);
    --border: rgba(226, 232, 240, 0.8);
    --border-hover: rgba(203, 213, 225, 1);
    
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --nav-height: 80px;
    --radius-sm: 12px;
    --radius: 24px;
    --radius-lg: 32px;
    
    --glow-primary: 0 10px 30px rgba(79, 70, 229, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

/* === BACKGROUND ANIMATION === */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #F8FAFC;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: #E0E7FF;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%; right: -10%;
    width: 500px; height: 500px;
    background: #FCE7F3;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 50%;
    width: 400px; height: 400px;
    background: #E0F2FE;
    transform: translateX(-50%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.1); }
}

.app-wrapper {
    position: relative;
    z-index: 1;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
    color: #fff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: 0.4s;
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.nav-brand {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-main);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.brand-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-links {
    display: flex; gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}

.nav-link {
    padding: 8px 24px;
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* === HERO SECTION === */
.hero {
    padding: calc(var(--nav-height) + 100px) 0 100px;
    min-height: 100vh;
    display: flex; align-items: center; text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 24px; border-radius: 100px;
    background: #fff; border: 1px solid var(--border);
    color: var(--text-main); font-size: 0.9rem; font-weight: 600;
    margin-bottom: 32px; box-shadow: var(--shadow-soft);
}

.hero-badge i { color: var(--success); font-size: 0.7rem; animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900; margin-bottom: 24px; line-height: 1.1;
    color: #0F172A;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px; margin: 0 auto 48px; line-height: 1.8;
}

/* Search Box */
.search-box {
    max-width: 760px; margin: 0 auto; position: relative;
}

.search-box form {
    display: flex;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.search-box form:focus-within {
    border-color: var(--primary-light);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.search-box input {
    flex: 1; padding: 0 32px;
    background: transparent; border: none;
    color: var(--text-main); font-size: 1.2rem;
    font-family: var(--font-body); font-weight: 500; outline: none;
}

.search-box input::placeholder { color: var(--text-light); }

.search-box button {
    padding: 16px 40px; border-radius: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none; font-size: 1.1rem; font-weight: 600;
    font-family: var(--font-heading); cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px;
}

.search-box button:hover {
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
    transform: scale(1.02);
}

/* Search Autocomplete */
.search-autocomplete {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); display: none; z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden;
}
.search-autocomplete.active { display: block; }
.search-autocomplete a { display: flex; justify-content: space-between; padding: 16px 24px; color: var(--text-main); font-weight: 500; transition: 0.2s; border-bottom: 1px solid var(--border); }
.search-autocomplete a:last-child { border-bottom: none; }
.search-autocomplete a:hover { background: #F8FAFC; color: var(--primary); padding-left: 28px; }

/* === STATS GRID === */
.hero-stats {
    display: flex; justify-content: center; gap: 40px; margin-top: 80px; flex-wrap: wrap;
}

.hero-stat {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 24px 40px; border-radius: var(--radius);
    backdrop-filter: blur(10px); text-align: center; transition: 0.4s;
    box-shadow: var(--shadow-card);
}

.hero-stat:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft), 0 10px 30px rgba(79,70,229,0.1);
}

.hero-stat .stat-number {
    font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading);
    color: var(--text-main); display: block; margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.95rem; color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
}

/* === SECTIONS === */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 100px;
    background: rgba(79, 70, 229, 0.1); color: var(--primary);
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: var(--text-main); }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* === CARDS GRID === */
.numbers-grid, .features-grid, .blog-grid, .about-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px;
}

/* Number Card */
.number-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    backdrop-filter: blur(10px); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}
.number-card:hover {
    transform: translateY(-8px); border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.number-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.phone-number { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); letter-spacing: 0.5px; }
.phone-number a { color: var(--text-main); }
.phone-number a:hover { color: var(--primary); }

.spam-badge { padding: 6px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.spam-badge.danger { background: #FEF2F2; color: #EF4444; border: 1px solid #FCA5A5; }
.spam-badge.warning { background: #FFFBEB; color: #F59E0B; border: 1px solid #FCD34D; }
.spam-badge.safe { background: #ECFDF5; color: #10B981; border: 1px solid #6EE7B7; }

.number-card-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.number-card-meta span {
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted);
    background: #F1F5F9; padding: 6px 12px; border-radius: 8px; font-weight: 500;
}
.number-card-meta i { color: var(--primary); }
.number-card-bar { height: 8px; background: #E2E8F0; border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.bar-fill { height: 100%; border-radius: 4px; }
.bar-fill.danger { background: linear-gradient(90deg, #F87171, #EF4444); }
.bar-fill.warning { background: linear-gradient(90deg, #FBBF24, #F59E0B); }
.bar-fill.safe { background: linear-gradient(90deg, #34D399, #10B981); }

.number-card-footer { display: flex; justify-content: space-between; align-items: center; }
.number-card-footer span { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; font-weight: 500;}
.number-card-footer a { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; color: var(--primary); }
.number-card-footer a:hover { color: var(--secondary); transform: translateX(3px); }

/* === FEATURES CARD === */
.feature-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px; transition: 0.4s; box-shadow: var(--shadow-card);
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 24px;
}
.feature-icon.purple { background: #EEF2FF; color: var(--primary); }
.feature-icon.green { background: #ECFDF5; color: var(--success); }
.feature-icon.red { background: #FEF2F2; color: var(--danger); }
.feature-icon.yellow { background: #FFFBEB; color: var(--warning); }

.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-main); }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem; }

/* === BLOG CARDS === */
.blog-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: 0.4s; box-shadow: var(--shadow-card);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.blog-card-image {
    height: 200px; background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--primary-light); opacity: 0.8;
}
.blog-card-body { padding: 32px; }
.blog-card-cat {
    display: inline-block; padding: 6px 16px; border-radius: 100px; background: #EEF2FF;
    color: var(--primary); font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase;
}
.blog-card h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { color: var(--text-main); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-light); font-weight: 500; }

/* === CTA SECTION === */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}
.cta-box::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.cta-box h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; color: #fff; }
.cta-box p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box .btn { background: #fff; color: var(--primary); }
.cta-box .btn:hover { background: #F8FAFC; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* === PHONE DETAIL PAGE === */
.phone-hero { padding: calc(var(--nav-height) + 60px) 0 40px; background: #fff; border-bottom: 1px solid var(--border); }
.phone-header { display: flex; align-items: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.phone-icon-lg {
    width: 90px; height: 90px; border-radius: 24px; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.phone-icon-lg.danger { background: linear-gradient(135deg, #F87171, #EF4444); box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3); }
.phone-icon-lg.warning { background: linear-gradient(135deg, #FBBF24, #F59E0B); box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); }
.phone-icon-lg.safe { background: linear-gradient(135deg, #34D399, #10B981); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); }

.phone-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-heading); letter-spacing: 1px; margin-bottom: 8px; color: var(--text-main); }
.phone-info .phone-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-muted); }
.phone-info .phone-meta span { display: flex; align-items: center; gap: 8px; background: #F1F5F9; padding: 6px 16px; border-radius: 100px; font-size: 0.95rem; font-weight: 500; }

.phone-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding-bottom: 80px; margin-top: 40px; }
.phone-main { display: flex; flex-direction: column; gap: 32px; }

/* Spam Meter */
.spam-meter { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.spam-meter h3 { margin-bottom: 24px; font-size: 1.3rem; display: flex; align-items: center; gap: 12px; }
.meter-bar { height: 16px; background: #E2E8F0; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.meter-fill { height: 100%; border-radius: 8px; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); }
.meter-labels { display: flex; justify-content: space-between; font-size: 0.95rem; font-weight: 700; color: var(--text-main); }

.vote-buttons { display: flex; gap: 16px; margin-top: 32px; }
.vote-btn {
    flex: 1; padding: 16px; border-radius: var(--radius-sm); border: 2px solid var(--border);
    background: #F8FAFC; color: var(--text-main); font-weight: 700; font-family: var(--font-heading);
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.vote-btn.spam:hover { border-color: var(--danger); color: var(--danger); background: #FEF2F2; }
.vote-btn.safe:hover { border-color: var(--success); color: var(--success); background: #ECFDF5; }

/* Comments */
.comments-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.comments-section h3 { margin-bottom: 24px; font-size: 1.3rem; }
.comment-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.comment-item { padding: 24px; background: #F8FAFC; border-radius: var(--radius-sm); border: 1px solid transparent; transition: 0.3s; }
.comment-item:hover { transform: translateX(5px); border-color: var(--border); background: #fff; box-shadow: var(--shadow-soft); }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.comment-author { font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-main); }
.comment-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.comment-body { font-size: 1.05rem; color: var(--text-main); line-height: 1.7; margin-bottom: 16px; }
.comment-tags { display: flex; gap: 10px; }
.comment-tag { padding: 6px 14px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; }
.comment-tag.spam { background: #FEF2F2; color: #EF4444; border: 1px solid #FCA5A5; }
.comment-tag.safe { background: #ECFDF5; color: #10B981; border: 1px solid #6EE7B7; }
.comment-tag.neutral { background: #EEF2FF; color: var(--primary); border: 1px solid #A5B4FC; }

/* Forms */
.comment-form { background: #F8FAFC; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.95rem; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
    width: 100%; padding: 14px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: 0.3s; font-weight: 500;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-option { position: relative; }
.radio-option input { position: absolute; opacity: 0; }
.radio-option label {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px; border: 2px solid var(--border); border-radius: 100px;
    cursor: pointer; font-size: 0.95rem; font-weight: 600; transition: 0.3s; background: #fff;
}
.radio-option input:checked + label { border-color: var(--primary); background: #EEF2FF; color: var(--primary); box-shadow: 0 4px 10px rgba(79,70,229,0.1); }

/* Sidebar */
.phone-sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.sidebar-card h3 { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; color: var(--text-main); }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.info-item .info-label { color: var(--text-muted); display: flex; align-items: center; gap: 10px; font-weight: 500;}
.info-item .info-value { font-weight: 700; color: var(--text-main); }
.similar-list { display: flex; flex-direction: column; gap: 12px; }
.similar-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 12px; background: #F8FAFC; transition: 0.3s; border: 1px solid transparent; }
.similar-item:hover { background: #fff; border-color: var(--border); transform: translateX(5px); box-shadow: var(--shadow-soft); }
.similar-item a { color: var(--text-main); font-weight: 700; font-family: var(--font-heading); font-size: 1.05rem; }
.similar-item a:hover { color: var(--primary); }

/* === OTHER PAGES === */
.about-hero, .contact-hero, .faq-section, .legal-page { padding: calc(var(--nav-height) + 80px) 0 80px; }
.about-hero h1, .contact-hero h1, .legal-page h1 { font-size: clamp(2rem, 4vw, 3.5rem); text-align: center; margin-bottom: 24px; color: var(--text-main); }
.about-hero p { text-align: center; color: var(--text-muted); max-width: 800px; margin: 0 auto 60px; font-size: 1.2rem; line-height: 1.8; }
.about-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; transition: 0.4s; text-align: center; box-shadow: var(--shadow-card); }
.about-card:hover { transform: translateY(-10px); border-color: var(--primary-light); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.about-icon { width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 24px; background: #EEF2FF; color: var(--primary); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-card); transition: 0.3s; }
.contact-info-card:hover { transform: translateX(10px); border-color: rgba(99,102,241,0.2); }
.info-icon { width: 60px; height: 60px; border-radius: 16px; background: #EEF2FF; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }

.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); transition: 0.3s; }
.faq-item:hover { border-color: rgba(99,102,241,0.3); }
.faq-question { width: 100%; padding: 24px 32px; background: none; border: none; color: var(--text-main); font-size: 1.1rem; font-weight: 700; font-family: var(--font-heading); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-answer { padding: 0 32px; max-height: 0; overflow: hidden; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { padding: 0 32px 32px; max-height: 800px; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }

.legal-content, .blog-detail-content { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 60px; box-shadow: var(--shadow-card); }
.legal-content h2, .blog-detail-content h2 { font-size: 1.8rem; margin: 40px 0 20px; color: var(--text-main); border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.legal-content p, .blog-detail-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; font-size: 1.1rem; }
.legal-content ul, .blog-detail-content ul { color: var(--text-muted); margin-left: 24px; margin-bottom: 24px; line-height: 1.8; font-size: 1.05rem; }

.blog-detail-header { text-align: center; max-width: 900px; margin: 0 auto 40px; }
.blog-detail-meta { display: flex; justify-content: center; gap: 24px; color: var(--text-muted); margin-top: 20px; font-size: 0.95rem; font-weight: 500;}

.page-404 { padding: calc(var(--nav-height) + 120px) 0; text-align: center; min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-404 h1 { font-size: 8rem; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.page-404 p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 40px; }

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--border); padding: 80px 0 0;
    background: #fff; margin-top: 80px; position: relative; z-index: 10;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; color: var(--text-main); font-size: 1.5rem; font-family: var(--font-heading); font-weight: 800; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; max-width: 400px; font-size: 1.05rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 48px; height: 48px; border-radius: 14px; background: #F8FAFC; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-main); font-size: 1.2rem; transition: 0.3s;
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(79,70,229,0.2); }
.footer-col h4 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 24px; font-family: var(--font-heading); }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 12px; font-size: 1rem; font-weight: 500; }
.footer-col a:hover { color: var(--primary); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

/* Utilities */
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Media Queries */
@media(max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .phone-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: calc(var(--nav-height) + 60px) 0 60px; min-height: auto; }
    .search-box button { padding: 16px 24px; }
    .search-box button span { display: none; }
    .search-box input { padding: 0 20px; font-size: 1rem; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .phone-header { justify-content: center; text-align: center; }
    .phone-info .phone-meta { justify-content: center; }
    .legal-content, .blog-detail-content { padding: 32px 24px; }
}
