/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .header-content,
[dir="rtl"] .nav,
[dir="rtl"] .footer-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .email-form {
  flex-direction: row-reverse;
}

[dir="rtl"] .modal-close {
  left: 20px;
  right: auto;
}

[dir="rtl"] .filters {
  flex-direction: row-reverse;
}

:root {
    --bg: #ffffff;
    --text-main: #111111;
    --accent-primary: #ff3366;
    --accent-primary-hover: #e02e5a;
    --highlight-yellow: #fff85a;
    --border-soft: #f0f0f0;
    --muted-text: #777777;
    --spacing: 24px;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Card variables */
    --card-border: #e8e8e8;
    --card-border-active: #111111; 
    --card-bg: #ffffff;
    --badge-green-bg: #e5f8e9;
    --badge-green-text: #14a54b;
    --badge-pink-bg: #ffe6ec;
    --badge-pink-text: #ff3366;
    
    /* Legacy vars for compatibility */
    --primary: #6366F1;
    --secondary: #8B5CF6;
    --background: var(--bg);
    --text: var(--text-main);
    --text-light: var(--muted-text);
    --border: var(--border-soft);
    --coral: var(--accent-primary);
    --coral-dark: var(--accent-primary-hover);
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .header-content,
[dir="rtl"] .nav,
[dir="rtl"] .footer-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .email-form {
  flex-direction: row-reverse;
}

[dir="rtl"] .modal-close {
  left: 20px;
  right: auto;
}

[dir="rtl"] .filters {
  flex-direction: row-reverse;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


.primary-btn {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: var(--accent-primary);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.primary-btn:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-1px);
}

/* Main Content */
.main {
    min-height: calc(100vh - 100px);
    padding: calc(var(--spacing) * 2) 0;
}

.view {
    display: none;
}

.view.active {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0 0 60px;
    margin-bottom: calc(var(--spacing) * 1.5);
    outline: none;
    border: none;
    background: transparent;
}

.hero * {
    outline: none;
}

.hero:focus,
.hero:focus-within {
    outline: none;
    border: none;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.hero-title .highlight {
    background: var(--highlight-yellow);
    padding: 0 8px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

/* Email Form */
.email-form {
    margin: 32px auto 12px;
    display: flex;
    max-width: 520px;
    border-radius: 999px;
    border: 2px solid var(--border-soft);
    overflow: hidden;
    background: var(--bg);
    box-shadow: none;
    outline: none;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    color: var(--text-main);
    outline: none;
    box-shadow: none;
}

.email-input:focus {
    outline: none;
    box-shadow: none;
}

.email-form:focus,
.email-form:focus-within {
    outline: none;
    box-shadow: none;
    border-color: var(--border-soft);
}

.email-input::placeholder {
    color: var(--muted-text);
}

.email-form .primary-btn {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: var(--accent-primary);
    color: white;
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
}

.email-form .primary-btn:hover {
    background: var(--accent-primary-hover);
}

.social-proof {
    font-size: 16px;
    color: var(--text-main);
    margin-top: 16px;
}

.social-proof strong {
    font-weight: 700;
    color: var(--text-main);
}

/* Controls */
.controls {
    margin-bottom: calc(var(--spacing) * 2);
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto calc(var(--spacing) * 1.5) auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--background);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: var(--background);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Startup Grid */
.startup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: calc(var(--spacing) * 2);
}

/* Startup Card */
.startup-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 18px 20px 20px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    cursor: pointer;
}

.startup-card:hover {
    border-color: var(--card-border-active);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

/* Header row */
.startup-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.startup-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.startup-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.startup-logo:has(.startup-logo-img) {
    background: transparent;
}

.startup-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badges */
.startup-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.startup-badge--revenue {
    background: var(--badge-green-bg);
    color: var(--badge-green-text);
}

.startup-badge--pre {
    background: var(--badge-pink-bg);
    color: var(--badge-pink-text);
}

.startup-badge--info {
    background: #E3F2FD;
    color: #1976D2;
}

/* Title & description */
.startup-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-main);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.startup-description {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: calc(var(--spacing) * 4) var(--spacing);
    color: var(--text-light);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state p {
    font-size: 16px;
    color: var(--text-light);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: calc(var(--spacing) * 4) var(--spacing);
    color: var(--text-light);
}

.empty-state svg {
    margin-bottom: var(--spacing);
    color: var(--text-light);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text);
}

/* Submit View */
.submit-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: calc(var(--spacing) * 2);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.submit-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.submit-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: calc(var(--spacing) * 2);
}

/* Submit Form */
.submit-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
    margin-top: calc(var(--spacing) * 1.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.radio-label span,
.checkbox-label span {
    flex: 1;
    font-size: 15px;
    color: var(--text);
}

.submit-btn {
    padding: 14px 24px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--background);
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1002;
    color: var(--text);
}

.modal-close:hover {
    background: var(--border);
}

.modal-body {
    padding: calc(var(--spacing) * 2);
}

/* Contact Modal Styles */
.contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
    margin-top: 8px;
}

.modal-resource-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--spacing);
}

.modal-resource-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: var(--spacing);
    border: 2px solid var(--border-color);
}

.modal-resource-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-resource-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
    margin-bottom: var(--spacing);
}

.modal-resource-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #E3F2FD;
    color: #1976D2;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing);
    margin-left: 8px;
}

.modal-resource-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--spacing);
}

.modal-resource-url {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: var(--spacing);
}

.modal-resource-url:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.modal-resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--spacing);
}

.modal-tag {
    padding: 6px 12px;
    background: var(--card-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 40px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .email-form {
        flex-direction: column;
        border-radius: 12px;
        max-width: 100%;
        margin: 24px auto 10px;
    }
    
    .email-input {
        border-radius: 12px 12px 0 0;
        padding: 14px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .email-form .primary-btn {
        width: 100%;
        border-radius: 0 0 12px 12px;
        padding: 14px 28px;
    }
    
    .startup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 12px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .filters::-webkit-scrollbar {
        height: 4px;
    }
    
    .filters::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .filters::-webkit-scrollbar-thumb {
        background: var(--border-soft);
        border-radius: 2px;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .submit-container {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-body {
        padding: 24px 20px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 44px; /* Larger touch target */
        height: 44px;
    }
    
    .modal-resource-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .modal-resource-name {
        font-size: 26px;
    }
    
    .modal-resource-description {
        font-size: 15px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 28px;
        min-height: 48px; /* Better touch target */
    }
    
    .submit-title {
        font-size: 28px;
    }
    
    .submit-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .email-form {
        margin: 20px auto 8px;
    }
    
    .startup-card {
        padding: 16px 18px;
    }
    
    .startup-title {
        font-size: 17px;
    }
    
    .startup-description {
        font-size: 13px;
    }
    
    .modal-content {
        width: 98%;
        margin: 10px auto;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px 16px;
    }
    
    .modal-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }
    
    .modal-resource-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .modal-resource-name {
        font-size: 22px;
    }
    
    .modal-resource-description {
        font-size: 14px;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .contact-subtitle {
        font-size: 13px;
    }
    
    .submit-title {
        font-size: 24px;
    }
    
    .submit-subtitle {
        font-size: 14px;
    }
    
    /* Ensure all buttons have good touch targets */
    .filter-btn,
    .primary-btn,
    .lang-toggle {
        min-height: 44px; /* iOS recommended touch target */
    }
    
    .startup-card {
        min-height: 44px; /* Better tap target */
    }
}

/* HEADER WRAPPER */
.header {
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  position: sticky;          /* optional */
  top: 0;
  z-index: 100;
}

/* CONTAINER INSIDE HEADER */
.header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;           /* IMPORTANT: no vertical padding here */
}

/* FLEX + COMPACT HEIGHT */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;              /* target header height */
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;              /* 15% larger than 35px, keeps header short */
  width: auto;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

/* Language Toggle */
.lang-toggle {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.lang-toggle:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.lang-code {
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* HEADER CTA BUTTON */
.header .primary-btn {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #ff3366;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header .container {
    padding: 0 16px;
  }

  .header-content {
    height: auto;
    min-height: 56px;
    padding: 6px 0;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
  }
  
  .logo-img {
    height: 34px;
  }

  .nav {
    gap: 8px;
    flex-wrap: nowrap;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
  }
  
  .nav-link {
    display: none;           /* Hide on mobile - can add hamburger menu later */
  }
  
  .header .primary-btn {
    font-size: 13px;
    padding: 7px 16px;
    flex-shrink: 0;
    margin: 0;
  }
  
  .lang-toggle {
    font-size: 12px;
    padding: 5px 9px;
    min-width: 42px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .header .container {
    padding: 0 12px;
  }
  
  .header-content {
    min-height: 52px;
    padding: 5px 0;
    gap: 6px;
    align-items: center;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .nav {
    gap: 5px;
    flex-wrap: nowrap;
  }
  
  .header .primary-btn {
    font-size: 11px;
    padding: 6px 12px;
    white-space: nowrap;
  }
  
  .lang-toggle {
    font-size: 11px;
    padding: 4px 7px;
    min-width: 36px;
  }
}

/* FOOTER */
.footer {
  border-top: 1px solid #f0f0f0;
  background-color: #ffffff;
  padding: 40px 0;
  margin-top: 80px;
}

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

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

.footer-text {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin: 0;
}

.footer-link {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #ff3366;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #e02e5a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
    margin-top: 60px;
  }

  .footer .container {
    padding: 0 16px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-text {
    font-size: 13px;
  }
  
  .footer-link {
    font-size: 14px;
    padding: 8px 16px;
    display: inline-block;
    min-height: 44px; /* Better touch target */
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 0;
    margin-top: 40px;
  }
  
  .footer .container {
    padding: 0 12px;
  }
  
  .footer-text {
    font-size: 12px;
  }
  
  .footer-link {
    font-size: 13px;
    padding: 8px 14px;
    min-height: 44px; /* Better touch target */
    line-height: 28px;
  }
}

