/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Background - Blue/Neutral accents only */
.gradient-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.12), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.08), transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(74, 158, 255, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0 80px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 20px;
    color: #888;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Page Hero (for subpages) */
.page-hero {
    text-align: center;
    padding: 100px 0 60px;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* Terminal Preview */
.terminal-preview {
    margin: 80px auto;
    max-width: 900px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.6s both;
}

.terminal-header {
    background: rgba(40, 40, 40, 0.9);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Keep functional colors for terminal traffic lights */
.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-body {
    padding: 30px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 10px;
    opacity: 0;
    animation: terminalType 0.5s ease-out forwards;
}

.terminal-line:nth-child(1) {
    animation-delay: 1s;
}

.terminal-line:nth-child(2) {
    animation-delay: 1.3s;
}

.terminal-line:nth-child(3) {
    animation-delay: 1.6s;
}

.terminal-line:nth-child(4) {
    animation-delay: 1.9s;
}

.terminal-line:nth-child(5) {
    animation-delay: 2.2s;
}

.prompt {
    color: #4a9eff;
}

.success {
    color: #27c93f;
}

.warning {
    color: #ffbd2e;
}

.error {
    color: #ff5f56;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    /* Blue gradient instead of Blue-Purple */
    background: linear-gradient(135deg, #4a9eff 0%, #306eb5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #888;
    line-height: 1.6;
}

/* Models Section */
.models-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.models-hero {
    text-align: center;
    padding: 120px 0 60px;
}

.models-hero h1 {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.models-hero p {
    font-size: 20px;
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s, border-color 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.model-badge {
    display: inline-block;
    padding: 6px 16px;
    /* Blue based gradient */
    background: linear-gradient(135deg, #4a9eff 0%, #0077ff 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.model-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.model-description {
    color: #888;
    margin-bottom: 30px;
    line-height: 1.6;
}

.model-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
}

/* Companies / Loved By Section */
.loved-by-section {
    padding: 100px 0;
    text-align: center;
}

.companies-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.company-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.company-item:hover {
    transform: translateY(-5px);
}

.company-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    transition: filter 0.3s;
}

.company-item:hover .company-logo-img {
    filter: grayscale(0%) brightness(1);
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    transition: color 0.3s;
    letter-spacing: -0.5px;
}

.company-item:hover .company-name {
    color: #fff;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.pricing-card.disabled {
    opacity: 0.6;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    color: #888;
}

.features-list i {
    color: #27c93f;
    margin-right: 10px;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

.wip-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ffbd2e;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
    max-width: 350px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    /* Blue gradient */
    background: linear-gradient(135deg, #4a9eff 0%, #0077ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
}

.contact-method-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-method-content p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

.contact-method-content a {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method-content a:hover {
    color: #74b0ff;
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 0;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-5px);
}

/* Download Page Styles */
.version-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4a9eff 0%, #0077ff 100%);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.downloads-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.platform-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.platform-card.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.platform-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ffbd2e;
    color: #000;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.platform-details {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.download-btn.disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

.info-box {
    background: rgba(255, 189, 46, 0.1);
    border: 1px solid rgba(255, 189, 46, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 60px;
}

.info-box h3 {
    color: #ffbd2e;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.changelog-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.changelog-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-entry {
    border-left: 2px solid rgba(74, 158, 255, 0.5);
    padding-left: 25px;
    margin-bottom: 35px;
    position: relative;
}

.version-entry::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: #4a9eff;
    border-radius: 50%;
}

.version-entry h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #4a9eff;
}

.version-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    color: #aaa;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #4a9eff;
}

.system-requirements {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.system-requirements h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.requirement-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
}

.requirement-item h4 {
    color: #4a9eff;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requirement-item p {
    color: #aaa;
    font-size: 15px;
}


/* API Key Page Styles */
.steps-container {
    padding: 80px 0;
}

.step {
    margin-bottom: 100px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step:nth-child(4) {
    animation-delay: 0.8s;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9eff 0%, #0077ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-left: 80px;
}

.step-description {
    font-size: 18px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}

.gif-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.gif-container img {
    width: 100%;
    height: auto;
    display: block;
}

.audio-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.audio-control:hover {
    background: rgba(74, 158, 255, 0.15);
    border-color: rgba(74, 158, 255, 0.5);
}

.audio-icon {
    font-size: 24px;
    color: #4a9eff;
}

.audio-text {
    font-size: 16px;
    color: #fff;
}

.code-block {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #27c93f;
    overflow-x: auto;
}

.tip-box {
    background: rgba(255, 189, 46, 0.1);
    border: 1px solid rgba(255, 189, 46, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.tip-icon {
    font-size: 24px;
    color: #ffbd2e;
    flex-shrink: 0;
}

.tip-text {
    color: #ccc;
    line-height: 1.6;
}

/* Footer Section */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* 404 & Text Content Pages */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
}

.content-wrapper h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.content-wrapper ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #bbb;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes terminalType {
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .companies-grid {
        gap: 40px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-logo-img {
        width: 60px;
        height: 60px;
    }

    .step-content {
        margin-left: 0;
        padding: 30px 20px;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }

    .step-title {
        font-size: 24px;
    }
}