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

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --primary-lighter: #f1f7ff;
    --surface: #ffffff;
    --background: #fafbfc;
    --text: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    height: 68px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.logo i {
    font-size: 26px;
    filter: drop-shadow(0 2px 4px rgba(26, 115, 232, 0.2));
}

.menu-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: var(--transition);
}

.menu-btn:hover {
    background: rgba(0,0,0,0.05);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 3px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.desktop-nav {
    display: none;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-xs);
}

.language-btn:hover {
    border-color: var(--primary);
    background: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
}

.language-btn .flag {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn .lang-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.language-btn i {
    font-size: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.language-option:hover {
    background: var(--primary-lighter);
}

.language-option.selected {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.language-option .flag {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.language-option .lang-name {
    flex: 1;
}

.language-option .check {
    margin-left: auto;
    color: var(--primary);
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
}

.language-option.selected .check {
    opacity: 1;
}

/* Mobile Language Selector */
.mobile-language-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-language-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: white;
    border: 1px solid var(--border-light);
}

.mobile-language-option:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-light);
    transform: translateX(4px);
}

.mobile-language-option.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.mobile-language-option .flag {
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-language-option .lang-name {
    flex: 1;
}

.mobile-language-option .check {
    color: var(--primary);
    font-size: 16px;
    opacity: 0;
    transition: var(--transition);
}

.mobile-language-option.selected .check {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    padding: 14px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.mobile-menu a:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-light);
    transform: translateX(4px);
}

.mobile-menu a:active {
    transform: translateX(2px) scale(0.98);
}

.mobile-menu .btn-primary {
    margin-top: 12px;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.mobile-menu .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 104px 24px 64px;
    text-align: center;
    color: white;
    margin-top: 68px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    position: relative;
    z-index: 2;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    font-family: 'Poppins', sans-serif;
}

.hero p {
    font-size: 18px;
    opacity: 0.96;
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 28px;
    padding: 6px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box:focus-within {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 20px 16px 52px;
    font-size: 16px;
    border-radius: 22px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') no-repeat 18px center;
    transition: var(--transition);
}

.search-input:focus {
    background-color: #fafbfc;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-btn {
    width: 100%;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 22px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
}

.search-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
    transform: translateY(-1px);
}

.search-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Filters */
.filters {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 10px 20px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.filter-chip:hover {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section */
.section {
    padding: 64px 24px;
    background: white;
}

.section:nth-child(even) {
    background: var(--background);
}

/* Kategoriler bölümü için özel padding */
#kategoriler {
    padding-top: 40px;
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
    position: relative;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: -0.03em;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 auto;
}

.card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--border);
}

.card:active {
    transform: translateY(-2px) scale(0.99);
}

.card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.card-image i {
    font-size: 72px;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.card:hover .card-image i {
    transform: scale(1.1);
}

.card-content {
    padding: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--primary-light);
    font-family: 'Inter', sans-serif;
}

.card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.35;
    font-family: 'Poppins', sans-serif;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.card-desc i {
    font-size: 15px;
    color: var(--primary);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:active {
    transform: translateY(-2px) scale(0.98);
}

.category-icon {
    font-size: 52px;
    margin-bottom: 16px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(26, 115, 232, 0.2));
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

.category-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    padding: 24px 24px 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    grid-column: 1 / -1;
}

.footer-app {
    grid-column: 1 / -1;
}

.footer-app h4 {
    display: none;
}

.app-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.app-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.app-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-btn:active {
    transform: translateY(0) scale(0.98);
}

.app-btn i {
    font-size: 28px;
    flex-shrink: 0;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-text small {
    font-size: 10px;
    opacity: 0.7;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.app-btn-text strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.footer-brand .logo {
    font-size: 22px;
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.social-btn:active {
    transform: translateY(-1px) scale(0.95);
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.95);
    font-family: 'Inter', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.95);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 5px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.95);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .header-content {
        padding: 0 40px;
    }
    
    .menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: flex !important;
        align-items: center;
        gap: 32px;
    }
    
    .desktop-nav a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        transition: var(--transition);
        position: relative;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.01em;
    }
    
    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }
    
    .desktop-nav a:hover {
        color: var(--text);
    }
    
    .desktop-nav a:hover::after {
        width: 100%;
    }
    
    .desktop-nav .btn-primary {
        padding: 10px 28px;
        background: var(--primary);
        color: white;
        border-radius: 24px;
        transition: var(--transition);
        box-shadow: 0 2px 8px rgba(26, 115, 232, 0.25);
        font-weight: 600;
        font-family: 'Inter', sans-serif;
    }
    
    .desktop-nav .btn-primary::after {
        display: none;
    }
    
    .desktop-nav .btn-primary:hover {
        background: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
        transform: translateY(-2px);
        color: white;
    }
    
    .mobile-menu {
        display: none;
    }

    .hero {
        padding: 140px 40px 80px;
    }
    
    .hero h1 {
        font-size: 54px;
        letter-spacing: -0.04em;
    }
    
    .hero p {
        font-size: 19px;
        max-width: 680px;
        line-height: 1.75;
    }
    
    .search-box {
        display: flex;
        gap: 10px;
        border-radius: 32px;
        padding: 8px;
    }
    
    .search-input {
        flex: 1;
        margin-bottom: 0;
        padding: 14px 20px 14px 52px;
    }
    
    .search-btn {
        width: auto;
        padding: 14px 36px;
        border-radius: 26px;
        margin-top: 0;
    }
    
    .section {
        padding: 80px 40px;
    }
    
    .section-header h2 {
        font-size: 38px;
        letter-spacing: -0.03em;
    }
    
    .section-header p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .footer {
        padding: 24px 40px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-app {
        grid-column: auto;
    }
    
    .footer-app h4 {
        display: block;
    }

    .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .app-btn {
        padding: 14px 20px;
        gap: 14px;
    }
    
    .app-btn i {
        font-size: 32px;
    }
    
    .app-btn-text small {
        font-size: 11px;
    }
    
    .app-btn-text strong {
        font-size: 15px;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: row;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .hero h1 {
        font-size: 58px;
        letter-spacing: -0.04em;
    }
    
    .section-header h2 {
        font-size: 42px;
        letter-spacing: -0.03em;
    }
    
    .card h3 {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .hero h1 {
        font-size: 68px;
        letter-spacing: -0.045em;
    }
    
    .section-header h2 {
        font-size: 48px;
    }
    
    .section-header p {
        font-size: 19px;
    }
    
    .section {
        padding: 96px 40px;
    }
}
