/* ============================================
   THE ANCHORED CREATOR - Website Styles
   Color Palette:
   - Olive: #7A8C6E (primary brand color)
   - Deep Olive: #5C6B50 (darker accent)
   - Light Sage: #C2CEBB (soft green)
   - Pale Sage: #E4E9E0 (lightest green)
   - Warm Cream: #F7F5F0 (background)
   - Warm White: #FDFCFA
   - Warm Dark: #3D3327 (text)
   - Claude Orange: #D97757 (warm accent)
   - Claude Orange Light: #E8A88E
   ============================================ */

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

:root {
    --olive: #7A8C6E;
    --olive-deep: #4A5A3E;
    --olive-dark: #2F3B28;
    --olive-light: #C2CEBB;
    --olive-pale: #E8ECE4;
    --cream: #F5F2EC;
    --cream-dark: #EDE8DF;
    --white: #FDFCF8;
    --claude: #D97757;
    --claude-light: #E8A88E;
    --claude-pale: #F5E0D5;
    --dark: #2F3B28;
    --text: #4A4A42;
    --text-light: #7A7568;
    --font-serif: 'Fraunces', 'DM Serif Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(61, 51, 39, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 51, 39, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 51, 39, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--olive-deep);
    margin-bottom: 12px;
}

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

.section-title em {
    font-style: italic;
    color: var(--olive-deep);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #C4654A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--olive-deep);
    border: 1.5px solid var(--olive);
}

.btn-secondary:hover {
    background-color: var(--olive-pale);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    color: var(--olive-deep);
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1.5px solid var(--olive);
    padding-bottom: 2px;
}

.btn-text:hover {
    color: var(--dark);
    border-color: var(--dark);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(122, 140, 110, 0.15);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-img:hover {
    opacity: 0.85;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--olive-deep);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.3px;
    position: relative;
}

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

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

.nav-links a.active {
    color: var(--olive-deep);
}

.nav-cta {
    background-color: var(--claude) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

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

.nav-cta:hover {
    background-color: #C4654A !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* --- Hero Section --- */
.hero {
    margin-top: 110px;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 60px 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.claude-accent {
    color: var(--claude) !important;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--olive-deep);
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.15;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}

/* Illustration style hero (no photo cropping) */
.hero-illustration img {
    aspect-ratio: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 500px;
    object-fit: contain;
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: var(--olive-deep);
    padding: 28px 0;
    border: none;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.trust-icon {
    color: var(--claude);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.25);
}

/* --- About Preview --- */
.about-preview {
    padding: 120px 0;
    background-color: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.about-preview-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-preview-content .btn-text {
    margin-top: 12px;
}

/* --- Features --- */
.features {
    padding: 120px 0;
    background-color: var(--olive-dark);
    color: white;
}

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

.features .section-eyebrow {
    color: var(--claude-light);
}

.features .section-title {
    color: white;
}

.features .section-title em {
    color: var(--claude);
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(122, 140, 110, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--claude);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--claude-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--claude);
}

.feature-card h3 {
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Featured Product --- */
.featured-product {
    padding: 120px 0;
    background-color: var(--white);
}

.featured-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-features {
    margin: 28px 0 36px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
}

.check {
    color: var(--claude);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-mockup {
    background: linear-gradient(135deg, var(--olive-pale) 0%, var(--olive-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}

.mockup-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    box-shadow: var(--shadow-md);
}

.mockup-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 500;
}

.mockup-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--olive-deep);
    font-style: italic;
    margin-bottom: 24px;
}

.mockup-anchor {
    font-size: 2.5rem;
    color: var(--olive);
    margin-bottom: 24px;
}

.mockup-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* --- Quote Section --- */
.quote-section {
    padding: 100px 0;
    background-color: var(--olive-deep);
    text-align: center;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--claude-light);
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.quote-attribution {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* --- Email Signup --- */
.email-signup {
    padding: 120px 0;
    background-color: var(--olive-dark);
}

.signup-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: none;
    border-top: 4px solid var(--claude);
}

.signup-content {
    position: relative;
    z-index: 2;
}

.signup-content p {
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.signup-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(122, 140, 110, 0.15);
}

.decoration-circle:first-child {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
}

.decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
}

/* --- Footer --- */
.footer {
    background-color: var(--olive-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    color: white;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: white;
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
    margin-top: 110px;
    padding: 100px 0 80px;
    background-color: var(--olive-dark);
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
}

.page-hero h1 em {
    color: var(--claude);
}

.page-hero .section-eyebrow {
    color: var(--claude-light);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .section-eyebrow {
    margin-bottom: 16px;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Content */
.about-content {
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-photo {
    position: sticky;
    top: 100px;
}

.about-photo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-text h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-values {
    padding: 100px 0;
    background-color: var(--olive-dark);
    color: white;
}

.about-values .section-eyebrow {
    color: var(--claude-light);
}

.about-values .section-title {
    color: white;
}

.about-values .section-title em {
    color: var(--claude);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 44px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--claude);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Family Section */
.about-family {
    padding: 100px 0;
}

.family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.family-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.family-text h2 {
    margin-bottom: 16px;
}

.family-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.products-grid-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(122, 140, 110, 0.12);
    transition: var(--transition);
}

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

.product-card-image {
    background: linear-gradient(135deg, var(--olive-pale) 0%, var(--cream-dark) 100%);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.product-card-body {
    padding: 32px;
}

.product-card-body h3 {
    margin-bottom: 10px;
}

.product-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--claude);
    margin-bottom: 20px;
    display: block;
}

.product-badge {
    display: inline-block;
    background-color: var(--claude-pale);
    color: var(--claude);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Coming Soon Card */
.product-card.coming-soon {
    opacity: 0.85;
}

.product-card.coming-soon .product-card-image {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

/* ============================================
   FREEBIE PAGE
   ============================================ */

.freebie-section {
    margin-top: 110px;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.freebie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.freebie-content .section-eyebrow {
    margin-bottom: 16px;
}

.freebie-content h1 {
    margin-bottom: 20px;
}

.freebie-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.freebie-features {
    margin-bottom: 36px;
}

.freebie-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
}

.freebie-form {
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius);
}

.freebie-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--olive-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 12px;
    background: var(--white);
    transition: var(--transition);
    color: var(--dark);
}

.freebie-form input:focus {
    outline: none;
    border-color: var(--olive-deep);
}

.freebie-form .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 16px;
}

.freebie-form .form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.freebie-image {
    display: flex;
    justify-content: center;
}

.freebie-mockup {
    background: linear-gradient(135deg, var(--olive-pale) 0%, var(--olive) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.freebie-mockup-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 32px;
}

.freebie-mockup-inner .mockup-anchor {
    font-size: 2rem;
    margin-bottom: 16px;
}

.freebie-mockup-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.freebie-mockup-inner p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px;
        min-height: auto;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-image img {
        max-width: 350px;
        aspect-ratio: 1;
        border-radius: 50%;
    }

    .hero-illustration img {
        max-width: 380px;
        aspect-ratio: auto;
        border-radius: var(--radius);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-preview-grid,
    .featured-product-grid,
    .about-layout,
    .family-grid,
    .freebie-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-photo {
        position: relative;
        top: 0;
    }

    .about-photo img {
        max-width: 400px;
        margin: 0 auto;
    }

    .signup-card {
        padding: 60px 32px;
    }

    .about-preview-content,
    .about-values {
        text-align: center;
    }

    .about-preview-content .btn-text {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(122, 140, 110, 0.15);
    }

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

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

    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }

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

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

    .nav-cta {
        text-align: center !important;
        margin-top: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    .trust-items {
        justify-content: center;
    }

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

    .freebie-section {
        padding: 40px 0;
    }

    .freebie-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .trust-item span:last-child {
        font-size: 0.8rem;
    }
}
