| name | mobile-responsive |
| description | Mobile-first responsive design patterns for sales funnels. Ensures every page works flawlessly on all screen sizes with proper touch targets, readable typography, and fast load times.
|
Mobile-Responsive Design
Over 60% of funnel traffic comes from mobile. Build mobile-first, always.
Breakpoint System
@media (min-width: 768px) { }
@media (min-width: 1024px) { }
@media (min-width: 1280px) { }
Required Meta Tag
Every HTML page must include:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Layout Patterns
Single-Column Mobile Layout
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
@media (min-width: 768px) {
.grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
.grid { grid-template-columns: repeat(3, 1fr); }
}
Sticky Mobile CTA
.mobile-cta-bar {
display: none;
}
@media (max-width: 767px) {
.mobile-cta-bar {
display: flex;
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 12px 16px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
z-index: 100;
}
.mobile-cta-bar .cta-primary {
width: 100%;
min-height: 48px;
font-size: 16px;
}
body { padding-bottom: 80px; }
}
Typography Scale
:root {
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
}
h1 {
font-size: var(--text-3xl);
line-height: 1.2;
}
@media (min-width: 768px) {
h1 { font-size: var(--text-4xl); }
}
@media (min-width: 1024px) {
h1 { font-size: 3rem; }
}
body {
font-size: var(--text-base);
line-height: 1.6;
}
Touch Target Requirements
button, a, input, select, textarea {
min-height: 44px;
min-width: 44px;
}
.nav-links a {
padding: 12px 16px;
}
.form-group + .form-group {
margin-top: 16px;
}
Responsive Images
img {
max-width: 100%;
height: auto;
display: block;
}
Mobile Testing Checklist