/* PivotAllift Website Styles */

/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #f59e0b;
    --background: #0f172a;
    --background-light: #1e293b;
    --surface: #334155;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --success: #10b981;
    --error: #ef4444;
    --border: #475569;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.logo-text .accent {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== Hero & Services Background Wrapper ===== */
.bg-hero-services {
    position: relative;
}

/* Services background wrapper div */
.services-bg-wrapper {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

/* Hero Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.5) 0%,
            rgba(15, 23, 42, 0.65) 50%,
            rgba(15, 23, 42, 0.95) 100%
        ),
        url('../images/hero-bg.jpg') center top / cover no-repeat;
    z-index: -1;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Smooth transition from hero to services */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 150px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 23, 42, 1) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

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

/* ===== Features Section ===== */
.features {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

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

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

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* ===== App Section ===== */
.app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background-light);
    border-radius: var(--radius);
}

.app-content h2 {
    margin-bottom: 1rem;
}

.app-content > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.app-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.app-store-badge img {
    transition: var(--transition);
}

.app-store-badge:hover img {
    transform: scale(1.05);
}

.phone-mockup {
    width: 280px;
    background: var(--surface);
    border-radius: 40px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--background) 100%);
    border-radius: 32px;
}

/* ROL Phone Mockup */
.rol-screen {
    background: var(--background);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-ui {
    width: 100%;
}

.mock-header {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.mock-stat {
    background: var(--background-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mock-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.mock-value.positive {
    color: var(--success);
}

/* ===== Services Section ===== */
.services-section {
    position: relative;
    padding: 6rem 1.5rem;
    text-align: center;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

/* Services Background */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.88) 0%,
            rgba(15, 23, 42, 0.8) 50%,
            rgba(15, 23, 42, 0.95) 100%
        ),
        url('../images/services-bg.jpg') center center / cover no-repeat;
    z-index: -1;
}

.services-section > h2,
.services-section > p,
.services-section > .services-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-section h2 {
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.service-card {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: rgba(30, 41, 59, 0.98);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ===== Industries Section ===== */
.industries-section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: var(--background-light);
}

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

.industry-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.industry-card.featured {
    grid-column: span 2;
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--background) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.industry-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.industry-card.featured .industry-icon {
    color: var(--accent);
}

.industry-card h3 {
    margin-bottom: 0.75rem;
}

.industry-card > p {
    color: var(--text-muted);
}

.industry-capabilities {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-capabilities li {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== Our Apps Section (Home) ===== */
.our-apps-section {
    padding: 6rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.app-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.app-showcase-content {
    flex: 1;
}

.app-showcase-content h3 {
    margin-bottom: 0.5rem;
}

.app-showcase-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.app-showcase-visual {
    flex-shrink: 0;
}

.phone-mockup.small {
    width: 160px;
    padding: 8px;
    border-radius: 24px;
}

.phone-mockup.small .phone-screenshot {
    border-radius: 18px;
}

.more-apps-text {
    margin-top: 2rem;
    color: var(--text-muted);
}

/* ===== Why Us Section ===== */
.why-us-section {
    padding: 6rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.why-us-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.why-us-item p {
    color: var(--text-muted);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 1.5rem;
    background: var(--background-light);
}

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

.contact-content h2 {
    margin-bottom: 0.5rem;
}

.contact-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-method:hover {
    color: var(--primary-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== Apps Hero ===== */
.apps-hero {
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    background: var(--background-light);
}

.apps-hero h1 {
    margin-bottom: 0.5rem;
}

.apps-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
}

/* ===== Apps Overview ===== */
.apps-overview {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ===== App Feature Section ===== */
.app-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--background);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.app-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.app-title-row h2,
.app-title-row h3 {
    margin: 0;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.app-title-row.small .app-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.app-tagline {
    font-size: 1.25rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.app-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.app-features-list li:last-child {
    border-bottom: none;
}

.app-features-list strong {
    color: var(--text);
}

.app-features-list span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.app-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-feature-visual {
    display: flex;
    justify-content: center;
}

/* ===== Audience Section ===== */
.audience-section {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.audience-section h2 {
    margin-bottom: 2rem;
}

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

.audience-card {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
}

.audience-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--text-muted);
}

/* ===== Coming Soon ===== */
.coming-soon {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--background-light);
    margin: 2rem 0;
}

.coming-soon p {
    color: var(--text-muted);
}

.coming-soon a {
    color: var(--accent);
}

/* ===== Privacy Summary ===== */
.privacy-summary {
    background: var(--background-light);
    border-left: 4px solid var(--success);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}

.privacy-summary h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.privacy-summary p {
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    padding: 6rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--background-light);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-column h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 0.875rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 8rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.effective-date,
.last-updated {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.legal-content section {
    margin-top: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.legal-content address {
    font-style: normal;
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

/* ===== Support Page ===== */
.support-page {
    padding-top: 5rem;
}

.support-hero {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--background-light);
}

.support-hero h1 {
    margin-bottom: 0.5rem;
}

.support-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: -2rem auto 4rem;
    padding: 0 1.5rem;
}

.support-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.support-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.support-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
}

/* ===== Contact Form ===== */
.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Support Info ===== */
.support-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border);
}

.support-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.info-item {
    text-align: center;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-graphic {
        width: 250px;
        height: 250px;
    }

    .hero-cta {
        justify-content: center;
    }

    .app-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .app-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .app-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-feature-visual {
        order: -1;
    }

    .app-cta {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industry-card.featured {
        grid-column: span 1;
    }

    .app-showcase {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== App Store Badge Placeholder ===== */
.app-store-badge {
    display: inline-block;
}

.app-store-badge img[src*="app-store-badge"] {
    background: #000;
    border-radius: 8px;
    padding: 10px 20px;
}

/* Placeholder for missing image */
.app-store-badge img {
    display: block;
    min-height: 50px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 8px;
}
