/* Font Face Declarations */
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-reg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* ---- Warm Earthy Palette ---- */
    --color-primary: #B8860B;
    --color-primary-light: #D4A849;
    --color-primary-dark: #8B6914;
    --z-fixed: 300;
    --z-modal: 500;

    /* ---- Text ---- */
    --text-dark: #3D2B1F;
    --text-body: #5C4A3A;
    --text-muted: #8A7B6B;

    /* ---- Backgrounds ---- */
    --bg-cream: #FAF7F2;
    --bg-warm: #F5EFE6;
    --bg-white: #FFFFFF;
    --bg-dark: #2D2520;

    /* ---- Accent Colors ---- */
    --accent-pink: #F2C4CE;
    --accent-sage: #A8C5A0;
    --accent-blue: #B8D4E3;
    --accent-amber: #D4A849;
    --accent-blush: #FADCD9;

    /* ---- Shadows ---- */
    --shadow-warm-lg: 0 12px 40px rgba(61, 43, 31, 0.08);

    /* ---- Legacy tokens for compat ---- */
    --white: #ffffff;
    --background-light: #FAF7F2;
    --border-color: #E8DDD0;
}

html {
    background-color: var(--bg-cream);
}

body {
    font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-cream);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: var(--z-fixed);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: var(--bg-cream);
    box-shadow: 0 1px 12px rgba(61, 43, 31, 0.06);
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.main-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
    border-radius: 6px;
}

.nav-links li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* ==========================================
   BUTTONS
   ========================================== */
.btn-login {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-login:hover {
    background: rgba(61, 43, 31, 0.05);
}

.btn-primary {
    display: inline-block;
    color: var(--bg-cream);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    background: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-primary.orange {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: white !important;
}

.btn-primary:hover {
    background: var(--text-body);
    border-color: var(--text-body);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 14px 32px;
    font-size: 17px;
}

.btn-cta {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    border: none;
}

.btn-cta:hover {
    background: var(--color-primary-dark);
}

.btn-cta:active {
    transform: scale(0.98);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

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

.hero h1 {
    font-size: 80px;
    line-height: 1.0;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-footnote {
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.hero-img {
    border-radius: 16px;
    overflow: hidden;
}

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

.hero-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 20px;
    min-height: 380px;
}

.hero-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 20px;
    min-height: 180px;
}

.hero-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 20px;
    min-height: 180px;
}

/* Decorative floating shapes */
.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
    z-index: 0;
}

.shape-pink { background: var(--accent-pink); }
.shape-sage { background: var(--accent-sage); }
.shape-blue { background: var(--accent-blue); }
.shape-amber { background: var(--accent-amber); }

.shape-1 {
    width: 120px;
    height: 80px;
    top: 18%;
    left: 42%;
    transform: rotate(-12deg);
    opacity: 0.7;
}

.shape-2 {
    width: 80px;
    height: 100px;
    bottom: 20%;
    right: 8%;
    transform: rotate(25deg);
    opacity: 0.6;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 3%;
    transform: rotate(45deg);
    opacity: 0.5;
}

.shape-float {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 1;
    opacity: 0.55;
    top: -20px;
    right: -20px;
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}

.btn-secondary {
    display: inline-block;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 1px solid var(--border-color);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(61, 43, 31, 0.05);
}

.btn-secondary:active {
    transform: scale(0.98);
}


/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
}

/* ==========================================
   WE PROVIDE SECTION
   ========================================== */
.provide-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.provide-heading {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.provide-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.provide-block.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: rtl;
}

.provide-block.reverse > * {
    direction: ltr;
}

.provide-content {
    padding: 20px 0;
}

.provide-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.tag-pink {
    background: var(--accent-pink);
    color: #8B4D5A;
}

.tag-sage {
    background: var(--accent-sage);
    color: #3D5C35;
}

.tag-blue {
    background: var(--accent-blue);
    color: #3D6680;
}

.tag-amber {
    background: var(--accent-amber);
    color: #5C4200;
}

.provide-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.provide-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 420px;
}

.provide-visual {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.provide-visual img {
    height: 340px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 24px 8px 24px 8px;
    box-shadow: var(--shadow-warm-lg);
}

.provide-block.reverse .provide-visual img {
    border-radius: 8px 24px 8px 24px;
}

/* ==========================================
   FEATURED PRODUCTS
   ========================================== */
.featured-products {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    cursor: grab;
}

.products-grid:active {
    cursor: grabbing;
}

.products-grid::-webkit-scrollbar {
    height: 6px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--bg-warm);
    border-radius: 3px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.product-card-home {
    overflow: hidden;
    transition: transform 0.3s ease;
    min-width: 340px;
    flex: 0 0 340px;
    scroll-snap-align: start;
}

.product-card-home:hover {
    transform: translateY(-4px);
}

.product-card-image {
    aspect-ratio: 4/5;
    background: var(--bg-warm);
    border-radius: 20px 6px 20px 6px;
    overflow: hidden;
    box-shadow: var(--shadow-warm-lg);
}

.product-card-home:nth-child(even) .product-card-image {
    border-radius: 6px 20px 6px 20px;
}

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

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

.product-card-info {
    padding: 16px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.product-card-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-body);
}

/* ==========================================
   BECOME A MAKER
   ========================================== */
.become-maker {
    padding: 80px 0;
    background: var(--bg-cream);
}

.become-maker-eyebrow {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.become-maker-card {
    background: var(--bg-dark);
    border-radius: 32px 8px 32px 8px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.become-maker-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-cream);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.become-maker-content p {
    font-size: 16px;
    color: rgba(250, 247, 242, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.become-maker-content .btn-primary {
    background: var(--bg-cream);
    color: var(--bg-dark);
    border-color: var(--bg-cream);
}

.become-maker-content .btn-primary:hover {
    background: var(--bg-warm);
    border-color: var(--bg-warm);
}

.become-maker-images {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: end;
}

.maker-img {
    overflow: hidden;
}

.maker-img:first-child {
    border-radius: 24px 8px 24px 8px;
}

.maker-img:last-child {
    border-radius: 8px 24px 8px 24px;
    transform: translateY(-20px);
}

.maker-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.maker-img:hover img {
    transform: scale(1.05);
}

/* ==========================================
   SPOTLIGHT
   ========================================== */
.spotlight-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.spotlight-section .section-title {
    margin-bottom: 32px;
}

.spotlight-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    border-radius: 8px 32px 8px 32px;
    padding: 40px;
    box-shadow: var(--shadow-warm-lg);
}

.spotlight-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-pink);
    color: #8B4D5A;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.spotlight-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.spotlight-info p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.spotlight-link {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.spotlight-link:hover {
    color: var(--color-primary-dark);
}

.spotlight-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.spotlight-img {
    overflow: hidden;
    box-shadow: var(--shadow-warm-lg);
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spotlight-img:hover img {
    transform: scale(1.05);
}

.spotlight-img-featured {
    grid-row: 1 / 3;
    border-radius: 24px 8px 24px 8px;
}

.spotlight-img:not(.spotlight-img-featured) {
    border-radius: 8px 24px 8px 24px;
}

.spotlight-img-featured img {
    min-height: 280px;
}

.spotlight-img:not(.spotlight-img-featured) img {
    height: 130px;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 100px 0;
    background: var(--accent-blush);
    text-align: center;
}

.final-cta .container {
    max-width: 800px;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-cream);
    padding: 80px 0 40px;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

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

.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-cream);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.6);
    line-height: 1.6;
}

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

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

.footer-link {
    color: rgba(250, 247, 242, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--bg-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
}

.footer-copyright {
    color: rgba(250, 247, 242, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(250, 247, 242, 0.7);
}

.footer-legal a {
    color: rgba(250, 247, 242, 0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--bg-cream);
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(250, 247, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(250, 247, 242, 0.2);
}

.social-link {
    color: rgba(250, 247, 242, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--bg-cream);
}

/* ==========================================
   BRAND PROMO (used on other pages)
   ========================================== */
.brand-promo-section {
    padding: 120px 64px;
    background: var(--bg-dark);
}

.brand-promo-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.brand-promo-logo {
    width: 380px;
    height: 380px;
    background-color: var(--color-primary);
    -webkit-mask-image: url(../images/icons/logo.png);
    mask-image: url(../images/icons/logo.png);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.brand-promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-promo-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-cream);
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.brand-promo-content p {
    font-size: 18px;
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.brand-promo-content .btn-primary {
    margin-top: 12px;
    align-self: flex-start;
}

/* ==========================================
   PILLARS (used on other pages)
   ========================================== */
.pillars {
    padding: 80px 0;
    background: var(--bg-cream);
}

.pillars > .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.pillars-section-title {
    margin-bottom: 100px;
}

.pillars-section-title h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pillar-section {
    padding-top: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillar-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-section:last-child {
    padding-bottom: 0;
}

.pillar-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: right;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pillar-content {
    text-align: right;
    padding-top: 20px;
}

.pillar-section.reverse .pillar-title {
    text-align: left;
}

.pillar-section.reverse .pillar-content {
    text-align: left;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.pillar-section.reverse .pillar-row {
    grid-template-columns: 1.4fr 1fr;
    direction: rtl;
}

.pillar-section.reverse .pillar-row > * {
    direction: ltr;
}

.pillar-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 380px;
    margin-left: auto;
}

.pillar-section.reverse .pillar-content p {
    margin-left: 0;
    margin-right: auto;
}

.pillar-visual .placeholder-image {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.pillar-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pillar-section.reverse .pillar-buttons {
    justify-content: flex-start;
}

.learn-more {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.learn-more:hover {
    background: var(--bg-warm);
    border-color: var(--text-muted);
}

.contact-us {
    color: white;
    background-color: var(--color-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    transition: background 0.2s ease;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
}

.contact-us:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.placeholder-image.square {
    height: 450px;
    width: 450px !important;
    float: right;
}

/* ==========================================
   MERCHANT SHOWCASE (used on other pages)
   ========================================== */
.merchant-showcase {
    padding: 120px 0;
    background: var(--bg-warm);
}

.merchant-showcase .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.merchant-showcase .section-title {
    color: var(--text-dark);
    text-align: left;
    font-size: 48px;
    margin-bottom: 48px;
}

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

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.showcase-item.large {
    grid-column: span 2;
}

.showcase-item .placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
}

.merchant-name {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(45, 37, 32, 0.8);
    color: var(--bg-cream);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ==========================================
   DEVELOPER SECTION (used on other pages)
   ========================================== */
.developer-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.developer-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.developer-section .section-title {
    color: var(--text-dark);
}

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

.developer-section .section-title {
    text-align: left;
    font-size: 48px;
}

.developer-section .section-subtitle {
    text-align: left;
}

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

.feature-card {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 14px;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.stats-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   SETUP SECTION
   ========================================== */
.setup-section {
    padding: 120px 0;
    background: var(--bg-warm);
}

.setup-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.setup-section .section-title {
    color: var(--text-dark);
    text-align: left;
    font-size: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.step-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-blush);
    border-radius: 16px;
    margin: 0 auto 24px;
}

.step-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */
.testimonial-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.testimonial-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--accent-amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.author-title {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================
   AI SECTION
   ========================================== */
.ai-section {
    padding: 120px 0;
    background: var(--bg-warm);
}

.ai-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--accent-sage);
    color: #3D5C35;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-primary {
    background: rgba(184, 134, 11, 0.15);
    color: var(--color-primary);
}

.badge-secondary {
    background: rgba(168, 197, 160, 0.3);
    color: #3D5C35;
}

.ai-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.ai-content p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ai-visual .placeholder-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--accent-amber) 100%);
    border-radius: 20px;
}

/* ==========================================
   PAGE HEADER (shared)
   ========================================== */
.page-header {
    padding: 140px 0 80px;
    background: var(--bg-warm);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   CATEGORY & PRODUCT CARDS (shared)
   ========================================== */
.category-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-lg);
    border-color: var(--color-primary);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61, 43, 31, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--bg-warm);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

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

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

/* ==========================================
   SECTION UTILITIES
   ========================================== */
.section-gray {
    background: var(--bg-warm) !important;
}

.section-primary {
    background: linear-gradient(145deg, var(--accent-blush) 0%, var(--bg-warm) 100%);
}

.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }

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

.section-header .section-title {
    color: var(--text-dark);
    text-align: center;
}

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

/* ==========================================
   GRID UTILITIES
   ========================================== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================
   TEXT UTILITIES
   ========================================== */
.text-gray-500 { color: var(--text-muted); }
.text-gray-600 { color: var(--text-body); }
.text-gray-100 { color: var(--text-dark); }
.text-gray-700 { color: var(--text-body); }
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-2xl { font-size: 24px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ==========================================
   SPACING UTILITIES
   ========================================== */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-12 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }

/* ==========================================
   TWO COLUMN LAYOUT
   ========================================== */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col-layout h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.two-col-layout p {
    color: var(--text-body);
    line-height: 1.7;
}

.two-col-layout ul {
    list-style: disc;
    margin-left: 24px;
    color: var(--text-body);
}

.two-col-layout li {
    margin-bottom: 12px;
}

/* ==========================================
   BUTTON VARIANTS
   ========================================== */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 24px;
    font-size: 18px;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.btn-white:hover {
    background: var(--bg-cream);
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--bg-cream);
    padding: 14px 28px;
    border: 2px solid var(--bg-cream);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-outline-white:hover {
    background: rgba(250, 247, 242, 0.1);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 14px 28px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(184, 134, 11, 0.05);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
}

/* ==========================================
   CARD COMPONENT
   ========================================== */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.08);
}

.card-body {
    padding: 32px;
    color: var(--text-body);
}

.card-body h2,
.card-body h3 {
    color: var(--text-dark);
}

.card-body a {
    color: var(--color-primary);
}

.card-body ul {
    color: var(--text-body);
}

.card-body strong {
    color: var(--text-dark);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(61, 43, 31, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(232, 221, 208, 0.9);
}

.comparison-table thead th {
    background: var(--bg-warm);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    color: var(--text-body);
    line-height: 1.6;
}

.comparison-table .highlight-col {
    background: rgba(184, 134, 11, 0.07);
}

.comparison-table thead .highlight-col {
    background: rgba(184, 134, 11, 0.14);
}

@media (max-width: 767px) {
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

/* ==========================================
   TESTIMONIAL CARDS (component)
   ========================================== */
.testimonial {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 28px;
    left: 40px;
    font-size: 72px;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-quote {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: normal;
    position: relative;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--accent-amber));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-author-title {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Feature Card Icon */
.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stat Component */
.stat {
    text-align: center;
    padding: 24px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

/* ==========================================
   EMAIL INPUT
   ========================================== */
.email-input {
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    width: 320px;
    max-width: 100%;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    padding: 24px;
    z-index: var(--z-modal);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
}

.mobile-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* ==========================================
   DROPDOWN MENU
   ========================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.1);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-link:hover {
    background: var(--bg-cream);
    color: var(--text-dark);
}

/* ==========================================
   CTA SECTION (shared component)
   ========================================== */
.cta-section {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-cream);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(250, 247, 242, 0.6);
    margin-bottom: 32px;
}

/* ==========================================
   FLEX UTILITIES
   ========================================== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.sm\:flex-row { }
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.header-search {
    display: none;
}

/* ==========================================
   FOOTER GRID (legacy)
   ========================================== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-cream);
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(250, 247, 242, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--bg-cream);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .container,
    .header-container,
    .hero-container,
    .pillars > .container,
    .merchant-showcase .container,
    .developer-section .container,
    .stats-section .container,
    .testimonial-section .container,
    .ai-section .container,
    .setup-section .container,
    .final-cta .container,
    .footer .container {
        padding: 0 40px;
    }
}

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillar-row,
    .pillar-section.reverse .pillar-row {
        gap: 48px;
    }

    .become-maker-card {
        grid-template-columns: 1fr;
    }

    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-images {
        max-width: 500px;
    }

    .hero h1 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .container,
    .header-container,
    .hero-container,
    .pillars > .container,
    .merchant-showcase .container,
    .developer-section .container,
    .stats-section .container,
    .testimonial-section .container,
    .ai-section .container,
    .setup-section .container,
    .final-cta .container,
    .footer .container {
        padding: 0 24px;
    }

    .main-nav,
    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-images {
        display: none;
    }

    .pillars-section-title h1 {
        font-size: 36px;
    }

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

    .pillar-section {
        margin-bottom: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-input {
        width: 100%;
    }

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

    .showcase-item.large {
        grid-column: span 1;
    }

    .pillar-row,
    .pillar-section.reverse .pillar-row {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .brand-promo-section {
        padding: 80px 24px;
    }

    .brand-promo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-promo-logo {
        width: 240px;
        height: 240px;
    }

    .brand-promo-content h2 {
        font-size: 32px;
    }

    .pillar-visual .placeholder-image {
        height: 300px;
    }

    .pillar-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .ai-section .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .stat-number {
        font-size: 48px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .provide-block,
    .provide-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .provide-content h3 {
        font-size: 28px;
    }

    .become-maker-card {
        padding: 40px 24px;
    }

    .become-maker-content h2 {
        font-size: 32px;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-card-home {
        min-width: 260px;
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .become-maker-images {
        grid-template-columns: 1fr;
    }

    .spotlight-images {
        grid-template-columns: 1fr 1fr;
    }

    .spotlight-img-featured {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .spotlight-img-featured img {
        min-height: 200px;
    }
}

/* ==========================================
   ANIMATION (fade-in)
   ========================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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