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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0a0a0a;
}

/* CSS Variables for the new color scheme */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --accent-gold: #ffd700;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --text-primary: #e5e5e5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

/* Header */
.header {
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--darker-bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: var(--darker-bg);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: var(--card-bg);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.about-text h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.values {
    padding: 4rem 0;
    background: var(--card-bg);
}

.values h3 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-gold);
}

.value-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.leadership {
    padding: 4rem 0;
}

.leadership h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.leader-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease;
}

.leader-card:hover {
    border-color: var(--primary-gold);
}

.leader-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.leader-card h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Products Page */
.product-showcase {
    padding: 4rem 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.product-header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-header h3 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.product-content {
    padding: 3rem 2rem;
}

.product-description {
    margin-bottom: 3rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 3rem;
}

.product-features h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.feature-list li {
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.product-benefits {
    margin-bottom: 3rem;
}

.product-benefits h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 12px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.product-cta {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 12px;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.coming-soon {
    padding: 4rem 0;
    background: var(--card-bg);
    text-align: center;
}

.coming-soon h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.coming-soon p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}



.contact-form-container h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-bg);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background: var(--primary-gold);
    color: var(--darker-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--accent-gold);
}

/* App Screenshots Section */
.app-screenshots {
    padding: 4rem 0;
    background: #f8fafc;
}

.app-screenshots h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.screenshot-device {
    background: #1e293b;
    border-radius: 20px;
    padding: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.screenshot-screen {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    min-height: 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.app-icon {
    font-size: 1.5rem;
}

.app-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.app-title p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

/* Landing Screen */
.landing-screen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.7rem;
    color: #64748b;
}

.value-display {
    background: #dcfce7;
    color: #166534;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-btn {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.app-btn.primary {
    background: #2563eb;
    color: white;
}

.app-btn.secondary {
    background: #f1f5f9;
    color: #1e293b;
}

/* List Screen */
.list-screen {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

.search-icon {
    font-size: 0.8rem;
    color: #64748b;
}

.search-text {
    color: #94a3b8;
    font-size: 0.8rem;
}

.category-filters {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    overflow-x: auto;
}

.filter-btn {
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 12px;
    font-size: 0.7rem;
    white-space: nowrap;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
}

.asset-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.asset-icon {
    font-size: 1rem;
    color: #64748b;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.8rem;
}

.asset-category {
    font-size: 0.7rem;
    color: #64748b;
}

/* Detail Screen */
.detail-screen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.asset-photos {
    margin-bottom: 1rem;
}

.photo-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.photo-item {
    width: 60px;
    height: 60px;
    background: #e2e8f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.asset-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.8rem;
}

.detail-value {
    color: #1e293b;
    font-size: 0.8rem;
}

/* Form Screen */
.form-screen {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-field label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.8rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    background: white;
}

.form-field textarea {
    height: 60px;
    resize: none;
}

/* PDF Screen */
.pdf-screen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    color: #1e293b;
}

.pdf-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pdf-title h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.pdf-title p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.pdf-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
}

.pdf-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pdf-section h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.25rem;
}

.pdf-table {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.pdf-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
    font-size: 0.7rem;
    border-bottom: 1px solid #f1f5f9;
}

.pdf-row.header {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e2e8f0;
}

.pdf-row:last-child {
    border-bottom: none;
}

.pdf-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pdf-category {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pdf-category span:first-child {
    color: #374151;
}

.pdf-category span:last-child {
    color: #059669;
    font-weight: 600;
}

.screenshot-card h5 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.screenshot-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Privacy Page */
.privacy-content {
    padding: 4rem 0;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h1 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.privacy-section h2 {
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.privacy-section h4 {
    color: #1e293b;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.25rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

.privacy-section hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 3rem 0;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.last-updated {
    background: #e0f2fe;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0284c7;
    margin-top: 2rem;
}

/* Terms of Service Page */
.terms-content {
    padding: 4rem 0;
}

.terms-text {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h1 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.terms-section h2 {
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

.terms-section strong {
    color: #dc2626;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--card-bg);
}

.faq-section h3 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-item h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    

    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        padding: 2rem 1rem;
    }
    
    .product-header {
        padding: 2rem 1rem;
    }
    
    .product-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-device {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 