/* === Moisea — Designed for Brilliance === */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #b8956a;
    --gold-light: #d4b896;
    --gold-dark: #96774e;
    --gold-glow: rgba(184, 149, 106, 0.35);
    --cream: #faf8f5;
    --cream-dark: #f3efe9;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --text: #1a1a1a;
    --text-secondary: #5a5550;
    --text-muted: #8a8480;
    --text-on-dark: #f5f0eb;
    --text-on-dark-muted: #bab5ae;
    --bg: #ffffff;
    --bg-alt: #faf8f5;
    --bg-dark: #1a1a1a;
    --bg-dark-alt: #232323;
    --border: #e8e2da;
    --border-light: #f0ebe4;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 24px rgba(184, 149, 106, 0.15);
    --shadow-gold-hover: 0 8px 32px rgba(184, 149, 106, 0.25);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* === Layout === */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Navigation === */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--charcoal);
    color: white !important;
    border-radius: 100px;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero === */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.85) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(184, 149, 106, 0.3);
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-on-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-on-dark-muted);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: white;
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 149, 106, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-on-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* === Sections === */

.section {
    padding: 100px 24px;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-dark .section-label {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.section-dark .section-subtitle {
    color: var(--text-on-dark-muted);
}

/* === Feature Cards (Moissanite qualities) === */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-hover);
}

.feature-card:hover::before {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 0 var(--gold-glow), 0 0 20px var(--gold-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    font-size: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Product Cards === */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-hover);
}

.product-card:hover::before {
    border-color: var(--gold);
    box-shadow: 0 0 24px var(--gold-glow);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    background: var(--charcoal);
    padding: 6px 16px;
    border-radius: 100px;
    z-index: 1;
}

.product-info {
    padding: 24px 28px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-dark);
}

.product-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* === Process Steps === */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-light), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-dark-alt);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-light);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-on-dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
}

/* === Testimonial / Quote === */

.quote-block {
    text-align: center;
    padding: 80px 24px;
    background: var(--cream);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 24px;
}

.quote-attribution {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === CTA Section === */

.cta-section {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}

.cta-section .section-title {
    margin-bottom: 20px;
}

.cta-section .section-subtitle {
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer === */

.footer {
    background: var(--charcoal);
    color: var(--text-on-dark-muted);
    padding: 64px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-on-dark);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* === Blog Cards === */

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

.blog-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}

.blog-card {
    position: relative;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-hover);
}

.blog-card:hover::before {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link::after {
    transform: translateX(4px);
}

/* === Blog Post === */

.blog-header {
    padding: 160px 24px 80px;
    text-align: center;
    background: var(--cream);
}

.blog-header .section-label {
    margin-bottom: 20px;
}

.blog-header h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header .blog-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.blog-content {
    padding: 64px 24px 100px;
}

.blog-content .container-narrow {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    color: var(--text);
    margin: 48px 0 20px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin: 36px 0 16px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content strong {
    color: var(--text);
    font-weight: 600;
}

.blog-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--cream);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

/* === Page Headers === */

.page-header {
    padding: 140px 24px 60px;
    text-align: center;
    background: var(--cream);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* === Custom Order Form === */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-channels {
    list-style: none;
    margin-bottom: 32px;
}

.contact-channels li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-channels li:first-child {
    border-top: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold-dark);
}

.contact-channel-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-channel-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-channel-info a {
    color: var(--gold-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-channel-info a:hover {
    color: var(--gold);
}

.process-list {
    list-style: none;
    counter-reset: process;
}

.process-list li {
    counter-increment: process;
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
}

.process-list li strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

/* Sticky CTA bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-text {
    color: var(--text-on-dark);
    font-size: 15px;
    font-weight: 500;
}

.sticky-cta-text span {
    color: var(--text-on-dark-muted);
    font-weight: 300;
    margin-left: 8px;
}

/* === Animations === */

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* === Responsive === */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 20px 80px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section {
        padding: 72px 20px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .quote-text {
        font-size: 22px;
    }

    .blog-header h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .sticky-cta-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .product-info {
        padding: 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}
