/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

#cookie-accept {
    background: #d4a574;
    color: #fff;
}

#cookie-accept:hover {
    background: #c49563;
}

#cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 16px 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c2c2c;
}

.logo a {
    color: inherit;
}

.nav-floating {
    display: flex;
    gap: 32px;
}

.nav-floating a {
    font-size: 15px;
    color: #555;
    transition: color 0.3s;
    position: relative;
}

.nav-floating a:hover,
.nav-floating a.active {
    color: #d4a574;
}

/* Hero Story Layout */
.hero-story {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.hero-text-narrow h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
}

/* Content Flow - Narrow Column */
.content-flow {
    padding: 100px 30px;
    background: #fafafa;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.narrow-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.narrow-column blockquote {
    border-left: 4px solid #d4a574;
    padding-left: 28px;
    margin: 40px 0;
    font-style: italic;
}

.narrow-column blockquote p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

.narrow-column cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    color: #777;
    font-size: 16px;
}

/* Split Visual */
.split-visual {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: #2c2c2c;
    color: #fff;
}

.split-right {
    background: #f5f5f5;
}

.split-left h3,
.split-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-left p,
.split-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-inline {
    display: inline-block;
    margin-top: 24px;
    font-size: 18px;
    color: #d4a574;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateX(6px);
}

/* Insight Reveal */
.insight-reveal {
    padding: 120px 30px;
    background: #fff;
}

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

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.insight-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #fafafa;
    border-left: 3px solid #d4a574;
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Testimonial Flow */
.testimonial-flow {
    padding: 100px 30px;
    background: #2c2c2c;
    color: #fff;
}

.testimonial-flow blockquote {
    border-left: 4px solid #d4a574;
    padding-left: 28px;
    margin: 40px 0;
}

.testimonial-flow p {
    font-size: 22px;
    line-height: 1.6;
}

.testimonial-flow cite {
    display: block;
    margin-top: 16px;
    color: #aaa;
    font-size: 16px;
}

/* Problem Amplify */
.problem-amplify {
    padding: 120px 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.problem-amplify h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.large-text {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #d4a574;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 20px;
}

/* Story Visual */
.story-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.story-overlay-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 700px;
    padding: 40px;
}

.story-overlay-text h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.story-overlay-text p {
    font-size: 19px;
    line-height: 1.6;
}

/* Trust Builder */
.trust-builder {
    padding: 120px 30px;
    background: #fff;
}

.trust-builder h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.collection-preview {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.collection-item {
    flex: 1;
    min-width: 300px;
}

.collection-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.collection-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.collection-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* CTA Blocks */
.cta-block-primary {
    padding: 100px 30px;
    background: #d4a574;
    color: #fff;
    text-align: center;
}

.cta-block-secondary {
    padding: 100px 30px;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
}

.cta-inner h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary-large:hover {
    background: #fff;
    color: #2c2c2c;
}

/* Services Pricing */
.services-pricing {
    padding: 120px 30px;
    background: #fafafa;
}

.services-pricing h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.service-card.featured {
    border: 2px solid #d4a574;
    position: relative;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin: 24px 0;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #1a1a1a;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 30px;
    background: #fff8f0;
    border-top: 3px solid #d4a574;
    border-bottom: 3px solid #d4a574;
}

.urgency-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.urgency-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

/* Form Section */
.form-section {
    padding: 100px 30px;
    background: #fff;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: #d4a574;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.btn-primary {
    padding: 12px 28px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c49563;
}

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

/* Final CTA */
.final-cta {
    padding: 100px 30px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #d4a574;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    padding: 140px 30px 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

/* About Story */
.about-story {
    padding: 80px 30px;
    background: #fff;
}

/* Values Section */
.values-section {
    padding: 100px 30px;
    background: #fafafa;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #fff;
    border-top: 4px solid #d4a574;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 80px 30px;
    background: #fff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    text-align: center;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 30px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 24px;
}

.service-price-box {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info-section {
    padding: 80px 30px;
    background: #fafafa;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-card a {
    color: #d4a574;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 30px;
    background: #fff;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.map-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.map-placeholder {
    height: 400px;
    background: #e8e8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #888;
}

/* Visit Info */
.visit-info {
    padding: 60px 30px;
    background: #fafafa;
}

.visit-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.visit-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

/* Thanks Page */
.thanks-hero {
    padding: 140px 30px 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content .lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background: #fff8f0;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
    margin: 40px 0;
}

.service-confirmation {
    font-size: 17px;
}

.service-confirmation strong {
    color: #2c2c2c;
}

.thanks-next {
    margin: 60px 0 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #d4a574;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 120px 30px 80px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #d4a574;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-floating {
        gap: 16px;
        font-size: 14px;
    }

    .hero-text-narrow h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .split-visual {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

    .insight-grid {
        flex-direction: column;
    }

    .collection-preview {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-floating {
        display: none;
    }

    .hero-text-narrow h1 {
        font-size: 28px;
    }

    .narrow-column h2 {
        font-size: 28px;
    }

    .insight-reveal h2,
    .trust-builder h2 {
        font-size: 32px;
    }

    .cta-inner h2 {
        font-size: 30px;
    }
}
