/* PawOps Landing Page - Common Styles */
/* Extracted from inline styles - Phase 1 Technical Cleanup */

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Color system - LIGHT THEME */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8FA;
    --bg-tertiary: #F0F0F3;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-tertiary: #666666;
    --accent: #FFBB58;
    --accent-glow: rgba(255, 187, 88, 0.15);
    --border: rgba(0, 0, 0, 0.08);
}

/* Typography */
h1 {
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
}

body, p, li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

.label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

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

a:hover {
    color: #FFD080;
}

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

section {
    padding: 72px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 24px 32px;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

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

nav, footer nav {
    aria-label: "Main navigation";
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-tertiary);
    display: block;
    margin-top: -4px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: #FFD080;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 187, 88, 0.3);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    margin: 6px 0;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    header { padding: 16px 20px; }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #fff !important;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 80px 24px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        z-index: 999;
    }
    .nav-menu.open { right: 0 !important; }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 16px;
        padding: 14px 20px;
        display: block;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
    }
    .nav-overlay.show { display: block; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 2px 16px rgba(255, 187, 88, 0.2);
}

.btn-primary:hover {
    background: #FFD080;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(255, 187, 88, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(255, 187, 88, 0.08);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 32px;
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.70) 60%, rgba(248,248,250,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

/* Social Proof Metrics Strip */
.social-proof-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    margin: -48px 0 24px;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .social-proof-strip {
        margin: -40px 0 20px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .social-proof-strip {
        margin: -32px 0 16px;
        padding: 16px 0;
    }
}

.proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-tertiary);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.proof-item .fa-icon {
    font-size: 16px;
    color: var(--accent);
}

/* Product Preview Section */
.product-preview {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 56px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-preview {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .product-preview {
        padding: 32px;
        margin-bottom: 40px;
    }
}

.browser-mockup {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.browser-header {
    background: var(--bg-tertiary);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E8E8E8;
}

.browser-url {
    flex: 1;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-left: 8px;
}

.browser-content {
    padding: 0;
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Dimensions and Lazy Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    background-color: var(--bg-secondary);
}

/* Before/After Section */
.before-after {
    margin: 56px 0;
}

@media (max-width: 768px) {
    .before-after {
        margin: 48px 0;
    }
}

@media (max-width: 480px) {
    .before-after {
        margin: 40px 0;
    }
}

.before-after h2 {
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .before-after h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .before-after h2 {
        margin-bottom: 32px;
    }
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .comparison-cards {
        gap: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
}

.comparison-card {
    border-radius: 12px;
    padding: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.comparison-card.without {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF8 100%);
    border-color: #FFE8D6;
}

.comparison-card.with {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFFBF7 100%);
    border-color: #FFE8D6;
}

.card-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
}

.comparison-card.without .card-header {
    color: #C41E3A;
    border-color: #FFB3BA;
}

.comparison-card.with .card-header {
    color: #D4891C;
    border-color: #FFD699;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    align-items: flex-start;
}

.comparison-list .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-card.without .icon {
    color: #C41E3A;
}

.comparison-card.with .icon {
    color: #D4891C;
}

/* Step by Step Section */
.step-section {
    margin: 56px 0 20px;
}

@media (max-width: 768px) {
    .step-section {
        margin: 48px 0;
    }
}

@media (max-width: 480px) {
    .step-section {
        margin: 40px 0;
    }
}

.step-section h2 {
    text-align: center;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .step-section h2 {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .step-section h2 {
        margin-bottom: 40px;
    }
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .step-item {
        gap: 40px;
        margin-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .step-item {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
}

.step-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.step-item.reverse .step-content {
    order: 2;
}

.step-item.reverse .step-image {
    order: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.step-image {
    position: relative;
}

.step-image .browser-mockup {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Comparison Table */
.comparison-table-section {
    margin: 8px 0 40px;
}

.comparison-table-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-primary);
}

.comparison-table tr:nth-child(odd) {
    background: var(--bg-secondary);
}

.comparison-table .check {
    color: #10A247;
    font-weight: 600;
}

.comparison-table .cross {
    color: #C41E3A;
    font-weight: 600;
}

.comparison-table .partial {
    color: var(--text-tertiary);
}

/* Screenshot Gallery */
.gallery-section {
    margin: 80px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: white;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-label {
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

/* Pricing Section */
.pricing {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 80px 40px;
}

.pricing h2 {
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

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

.pricing-features i {
    color: var(--accent);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    margin: 32px 0 48px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
}

.stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* FAQ */
.faq-section {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-button {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-button:hover {
    color: var(--accent);
}

.faq-button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

/* CTA Section */
.final-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 187, 88, 0.1) 0%, rgba(255, 187, 88, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--accent-glow);
    margin: 48px 0;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: #FFFFFF;
    padding: 60px 32px;
    margin-top: 60px;
}

footer nav {
    aria-label: "Footer navigation";
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 80px;
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-section {
    margin-left: 0 !important;
    transform: none !important;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--accent);
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: inline-block;
    line-height: 1.6;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #FFFFFF;
}

/* Keep resource links on one line */
.footer-section:nth-child(4) a {
    white-space: nowrap;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations & Transitions */
.reveal {
    opacity: 0;
}

.reveal.visible {
    opacity: 1;
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Comparison Table Styles */
@media (max-width: 1024px) {
    .comparison-table-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table-section > div > div {
        min-width: 900px;
    }

    .comparison-table-section [style*="display: grid; grid-template-columns: 1.4fr repeat"] {
        position: relative;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Video section KPI grid stacks on mobile */
    .video-grid-3col {
        grid-template-columns: 1fr !important;
    }

    .nav-links {
        gap: 24px;
        font-size: 14px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .proof-content {
        gap: 24px;
        flex-direction: column;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-item.reverse .step-content {
        order: auto;
    }

    .step-item.reverse .step-image {
        order: auto;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .gallery-item {
        flex: 0 0 250px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .final-cta .btn {
        display: block;
        width: 100%;
    }

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